6 lines
125 B
SQL
6 lines
125 B
SQL
create table if not exists shortlinks (
|
|
id text primary key,
|
|
url text not null,
|
|
expires_at timestamp not null
|
|
);
|