5 lines
101 B
SQL
5 lines
101 B
SQL
create table if not exists shortlinks (
|
|
id text primary key,
|
|
url text,
|
|
expiration date
|
|
); |