fwdkr.co/dist/links.sql

15 lines
375 B
SQL

-- auto-generated definition
create table links
(
path text not null
constraint links_pk
primary key,
target text not null,
needs_confirmation boolean default false not null,
visits int default 0 not null,
last_visit text
);
create unique index links_path_uindex
on links (path);