0305571cb3
Fixed the build tags for the alt database engines. Tweaked the quotes on the PgSQL adapter. Still not functional. Removed the SQLite build tag as it's unlikely that it'll ever be implemented.
18 lines
634 B
SQL
18 lines
634 B
SQL
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,
|
|
`path` varchar (200) DEFAULT '' not null,
|
|
`aria` varchar (200) DEFAULT '' not null,
|
|
`tooltip` varchar (200) DEFAULT '' not null,
|
|
`tmplName` varchar (200) DEFAULT '' not null,
|
|
`order` int DEFAULT 0 not null,
|
|
`guestOnly` boolean DEFAULT 0 not null,
|
|
`memberOnly` boolean DEFAULT 0 not null,
|
|
`staffOnly` boolean DEFAULT 0 not null,
|
|
`adminOnly` boolean DEFAULT 0 not null,
|
|
primary key(`miid`)
|
|
); |