fwdkr.co/dist/links.sql

14 lines
342 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,
expires_at datetime default null
);
create unique index links_path_uindex
on links (path);