1
0
Fork 0
mirror of https://github.com/Oreolek/yii2-nested-sets.git synced 2024-07-08 17:34:24 +03:00
yii2-nested-sets/schema/schema.sql

11 lines
281 B
MySQL
Raw Normal View History

2014-01-15 16:04:10 +02:00
CREATE TABLE `tbl_category` (
2013-05-06 11:26:02 +03:00
`id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`lft` INT(10) UNSIGNED NOT NULL,
`rgt` INT(10) UNSIGNED NOT NULL,
`level` SMALLINT(5) UNSIGNED NOT NULL,
PRIMARY KEY (`id`),
KEY `lft` (`lft`),
KEY `rgt` (`rgt`),
KEY `level` (`level`)
2014-01-15 16:04:10 +02:00
);