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

     1  CREATE TABLE "widgets" (
     2  	`wid` serial not null,
     3  	`position` int not null,
     4  	`side` varchar (100) not null,
     5  	`type` varchar (100) not null,
     6  	`active` boolean DEFAULT 0 not null,
     7  	`location` varchar (100) not null,
     8  	`data` text not null,
     9  	primary key(`wid`)
    10  );