gosora/schema/mysql/query_widgets.sql
Azareal 78fbbcda21 Optimise template generator.
Optimise mysql adapter.
Add TokenScope to mysql adapter.
Add SimpleBulkInsert() to installer.
Optimise panel.Plugins() route.
2021-04-30 08:33:02 +10:00

10 lines
266 B
SQL

CREATE TABLE `widgets`(
`wid` int not null AUTO_INCREMENT,
`position` int not null,
`side` varchar(100) not null,
`type` varchar(100) not null,
`active` boolean DEFAULT 0 not null,
`location` varchar(100) not null,
`data` text not null,
primary key(`wid`)
);