github.com/Azareal/Gosora@v0.0.0-20210729070923-553e66b59003/schema/mssql/query_menu_items.sql (about) 1 CREATE TABLE [menu_items] ( 2 [miid] int not null IDENTITY, 3 [mid] int not null, 4 [name] nvarchar (200) DEFAULT '' not null, 5 [htmlID] nvarchar (200) DEFAULT '' not null, 6 [cssClass] nvarchar (200) DEFAULT '' not null, 7 [position] nvarchar (100) not null, 8 [path] nvarchar (200) DEFAULT '' not null, 9 [aria] nvarchar (200) DEFAULT '' not null, 10 [tooltip] nvarchar (200) DEFAULT '' not null, 11 [tmplName] nvarchar (200) DEFAULT '' not null, 12 [order] int DEFAULT 0 not null, 13 [guestOnly] bit DEFAULT 0 not null, 14 [memberOnly] bit DEFAULT 0 not null, 15 [staffOnly] bit DEFAULT 0 not null, 16 [adminOnly] bit DEFAULT 0 not null, 17 primary key([miid]) 18 );