* [DEV] Fixed DB structure & UI tweaks

This commit is contained in:
nuxsmin
2016-12-31 12:52:01 +01:00
parent 0684042ee8
commit 4280b9ec2f
7 changed files with 36 additions and 28 deletions

View File

@@ -28,6 +28,7 @@ DROP TABLE IF EXISTS `categories`;
CREATE TABLE `categories` (
`category_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`category_name` varchar(50) NOT NULL,
`category_hash` varbinary(40) NOT NULL,
`category_description` varchar(255) DEFAULT NULL,
PRIMARY KEY (`category_id`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8;