mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-08-20 22:05:22 -04:00
Fix ticket #1155. For compatibility with gallery2 increase the size of the tag name field from 64 bytes to 128 bytes.
This commit is contained in:
@@ -309,7 +309,7 @@ DROP TABLE IF EXISTS {tags};
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE {tags} (
|
||||
`id` int(9) NOT NULL AUTO_INCREMENT,
|
||||
`name` varchar(64) NOT NULL,
|
||||
`name` varchar(128) NOT NULL,
|
||||
`count` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `name` (`name`)
|
||||
|
||||
Reference in New Issue
Block a user