d0318191c9
Refactored the menu system. Updated the README and revamped it a tad to make it easier to understand. Also, added manual instructions for patching. Revamped the update scripts, especially on Windows. Merged the CSS and Tmpl phrase namespaces. Added lastSchema to .gitignore Added DropTable to the database adapters. Implemented DbVersion in the PgSQL Adapter. Swapped out the checkboxes for cleaner looking yes-no dropdowns. Began revamping small bits of the user logic. We now open to contributions, just open a pull request and sign the CLA. Schema has been updated, run the patcher or update script.
17 lines
607 B
SQL
17 lines
607 B
SQL
CREATE TABLE `menu_items` (
|
|
`miid` int not null AUTO_INCREMENT,
|
|
`mid` int 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`)
|
|
); |