Don't forget the schema files.

This commit is contained in:
Azareal 2018-05-16 21:27:06 +10:00
parent e861ef9bfe
commit b7618ba4d7
3 changed files with 3 additions and 0 deletions

View File

@ -1,6 +1,7 @@
CREATE TABLE [menu_items] (
[miid] int not null IDENTITY,
[mid] int not null,
[name] nvarchar (200) not null,
[htmlID] nvarchar (200) DEFAULT '' not null,
[cssClass] nvarchar (200) DEFAULT '' not null,
[position] nvarchar (100) not null,

View File

@ -1,6 +1,7 @@
CREATE TABLE `menu_items` (
`miid` int not null AUTO_INCREMENT,
`mid` int not null,
`name` varchar(200) not null,
`htmlID` varchar(200) DEFAULT '' not null,
`cssClass` varchar(200) DEFAULT '' not null,
`position` varchar(100) not null,

View File

@ -1,6 +1,7 @@
CREATE TABLE `menu_items` (
`miid` serial not null,
`mid` int not null,
`name` varchar (200) not null,
`htmlID` varchar (200) DEFAULT '' not null,
`cssClass` varchar (200) DEFAULT '' not null,
`position` varchar (100) not null,