github.com/Azareal/Gosora@v0.0.0-20210729070923-553e66b59003/schema/mssql/query_widgets.sql (about)

     1  CREATE TABLE [widgets] (
     2  	[wid] int not null IDENTITY,
     3  	[position] int not null,
     4  	[side] nvarchar (100) not null,
     5  	[type] nvarchar (100) not null,
     6  	[active] bit DEFAULT 0 not null,
     7  	[location] nvarchar (100) not null,
     8  	[data] nvarchar (MAX) DEFAULT '' not null,
     9  	primary key([wid])
    10  );