diff options
author | Mario Vavti <mario@mariovavti.com> | 2023-10-06 14:28:59 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2023-10-06 14:28:59 +0200 |
commit | 0092b7c0a4d6cf49c092e2232af63f87be63142b (patch) | |
tree | 3ed1b65f0642c657fcf8c161b3e5f84122fa1f49 | |
parent | 9f48109640052ec4763e68eb3dd27933f8754e4b (diff) | |
download | volse-hubzilla-0092b7c0a4d6cf49c092e2232af63f87be63142b.tar.gz volse-hubzilla-0092b7c0a4d6cf49c092e2232af63f87be63142b.tar.bz2 volse-hubzilla-0092b7c0a4d6cf49c092e2232af63f87be63142b.zip |
should be tinyint instead of numeric for mysql
-rw-r--r-- | install/schema_mysql.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install/schema_mysql.sql b/install/schema_mysql.sql index cda82ed08..570ac6c86 100644 --- a/install/schema_mysql.sql +++ b/install/schema_mysql.sql @@ -1205,7 +1205,7 @@ CREATE TABLE IF NOT EXISTS `updates` ( `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_update` tinyint(1) NOT NULL DEFAULT 0, `ud_host` char(191) NOT NULL DEFAULT '', PRIMARY KEY (`ud_id`), KEY `ud_date` (`ud_date`), |