PlainSQLiteBlog/db/mysql/create_links_table.sql

9 lines
282 B
SQL

CREATE table if not exists links (
id integer primary key auto_increment,
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)