From b7618ba4d783db3ab959cd7b8617c755212ce8c9 Mon Sep 17 00:00:00 2001 From: Azareal Date: Wed, 16 May 2018 21:27:06 +1000 Subject: [PATCH] Don't forget the schema files. --- schema/mssql/query_menu_items.sql | 1 + schema/mysql/query_menu_items.sql | 1 + schema/pgsql/query_menu_items.sql | 1 + 3 files changed, 3 insertions(+) diff --git a/schema/mssql/query_menu_items.sql b/schema/mssql/query_menu_items.sql index 8bc10649..ca6ca556 100644 --- a/schema/mssql/query_menu_items.sql +++ b/schema/mssql/query_menu_items.sql @@ -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, diff --git a/schema/mysql/query_menu_items.sql b/schema/mysql/query_menu_items.sql index 9f0110c8..9cc3c620 100644 --- a/schema/mysql/query_menu_items.sql +++ b/schema/mysql/query_menu_items.sql @@ -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, diff --git a/schema/pgsql/query_menu_items.sql b/schema/pgsql/query_menu_items.sql index e528a197..ddfea98a 100644 --- a/schema/pgsql/query_menu_items.sql +++ b/schema/pgsql/query_menu_items.sql @@ -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,