diff options
author | Mario Vavti <mario@mariovavti.com> | 2023-10-06 14:24:33 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2023-10-06 14:24:33 +0200 |
commit | b976adb8aa32e810aa261c34432e7efaf17cf227 (patch) | |
tree | 952ada828aabdfbe566cdaa105b98e46a4ab5a6d /install/schema_mysql.sql | |
parent | 044e252d195be7fb9c523e5ab7e5f37eae7f03fd (diff) | |
download | volse-hubzilla-b976adb8aa32e810aa261c34432e7efaf17cf227.tar.gz volse-hubzilla-b976adb8aa32e810aa261c34432e7efaf17cf227.tar.bz2 volse-hubzilla-b976adb8aa32e810aa261c34432e7efaf17cf227.zip |
add missing columns in install script
Diffstat (limited to 'install/schema_mysql.sql')
-rw-r--r-- | install/schema_mysql.sql | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/install/schema_mysql.sql b/install/schema_mysql.sql index e342c4605..cda82ed08 100644 --- a/install/schema_mysql.sql +++ b/install/schema_mysql.sql @@ -1201,18 +1201,19 @@ CREATE TABLE IF NOT EXISTS `tokens` ( CREATE TABLE IF NOT EXISTS `updates` ( `ud_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `ud_hash` char(191) NOT NULL DEFAULT '', - `ud_guid` char(191) NOT NULL DEFAULT '', `ud_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', `ud_last` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', `ud_flags` int(11) NOT NULL DEFAULT 0 , `ud_addr` char(191) NOT NULL DEFAULT '', + `ud_update` numeric(1) NOT NULL DEFAULT 0, + `ud_host` char(191) NOT NULL DEFAULT '', PRIMARY KEY (`ud_id`), KEY `ud_date` (`ud_date`), - KEY `ud_guid` (`ud_guid`), KEY `ud_hash` (`ud_hash`), KEY `ud_flags` (`ud_flags`), KEY `ud_addr` (`ud_addr`), - KEY `ud_last` (`ud_last`) + KEY `ud_last` (`ud_last`), + KEY `ud_update` (`ud_update`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `verify` ( |