diff options
author | zotlabs <mike@macgirvin.com> | 2017-05-22 00:57:56 -0700 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-05-23 21:48:58 +0200 |
commit | 3a9e5f0f98d28959ecc73539a56c66ec2ff10016 (patch) | |
tree | 0a4ffe63c67c331904c6f97fd8b74f46e8c3266e /install | |
parent | 50c9aec43652726b17e0fee3b555fb1344f38dbd (diff) | |
download | volse-hubzilla-3a9e5f0f98d28959ecc73539a56c66ec2ff10016.tar.gz volse-hubzilla-3a9e5f0f98d28959ecc73539a56c66ec2ff10016.tar.bz2 volse-hubzilla-3a9e5f0f98d28959ecc73539a56c66ec2ff10016.zip |
schema fixes
Diffstat (limited to 'install')
-rw-r--r-- | install/schema_mysql.sql | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/install/schema_mysql.sql b/install/schema_mysql.sql index ceb63fce9..4f5b180ad 100644 --- a/install/schema_mysql.sql +++ b/install/schema_mysql.sql @@ -2,9 +2,9 @@ CREATE TABLE IF NOT EXISTS `abconfig` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `chan` int(10) unsigned NOT NULL DEFAULT 0 , - `xchan` char(255) NOT NULL DEFAULT '', - `cat` char(255) NOT NULL DEFAULT '', - `k` char(255) NOT NULL DEFAULT '', + `xchan` char(191) NOT NULL DEFAULT '', + `cat` char(191) NOT NULL DEFAULT '', + `k` char(191) NOT NULL DEFAULT '', `v` mediumtext NOT NULL, PRIMARY KEY (`id`), KEY `chan` (`chan`), |