1
0
Fork 0
mirror of https://github.com/Oreolek/yii2-nested-sets.git synced 2024-07-01 05:55:00 +03:00

Schemas updated

This commit is contained in:
Alexander Kochetov 2014-01-15 18:04:10 +04:00
parent 7a23e40bee
commit 2f16f9912b
2 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
CREATE TABLE `category` (
CREATE TABLE `tbl_category` (
`id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`root` INT(10) UNSIGNED DEFAULT NULL,
`lft` INT(10) UNSIGNED NOT NULL,
@ -9,4 +9,4 @@ CREATE TABLE `category` (
KEY `lft` (`lft`),
KEY `rgt` (`rgt`),
KEY `level` (`level`)
);
);

View file

@ -1,4 +1,4 @@
CREATE TABLE `category` (
CREATE TABLE `tbl_category` (
`id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`lft` INT(10) UNSIGNED NOT NULL,
`rgt` INT(10) UNSIGNED NOT NULL,
@ -7,4 +7,4 @@ CREATE TABLE `category` (
KEY `lft` (`lft`),
KEY `rgt` (`rgt`),
KEY `level` (`level`)
);
);