8 lines
224 B
MySQL
8 lines
224 B
MySQL
|
CREATE TABLE `widgets` (
|
||
|
`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 DEFAULT '' not null
|
||
|
);
|