DB: theme require a name, not filename
This commit is contained in:
parent
867d1d6f74
commit
73e1e8f127
1 changed files with 1 additions and 1 deletions
|
@ -127,6 +127,6 @@ CREATE TABLE IF NOT EXISTS `team_members` (
|
||||||
|
|
||||||
CREATE TABLE IF NOT EXISTS `themes` (
|
CREATE TABLE IF NOT EXISTS `themes` (
|
||||||
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||||
`filename` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
|
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
|
||||||
PRIMARY KEY (`id`)
|
PRIMARY KEY (`id`)
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
|
||||||
|
|
Reference in a new issue