9 lines
281 B
SQL
9 lines
281 B
SQL
CREATE table if not exists links (
|
|
id integer primary key autoincrement,
|
|
label text not null,
|
|
url text not null,
|
|
icon text not null,
|
|
position text not null,
|
|
visibility text null,
|
|
sort integer not null default 0)
|