gosora/schema/mssql/query_widgets.sql

10 lines
308 B
MySQL
Raw Normal View History

CREATE TABLE [widgets] (
2022-02-21 03:16:15 +00:00
[wid] int not null IDENTITY,
[position] int not null,
[side] nvarchar (100) not null,
[type] nvarchar (100) not null,
[active] bit DEFAULT 0 not null,
[location] nvarchar (100) not null,
[data] nvarchar (MAX) DEFAULT '' not null,
primary key([wid])
);