5 lines
120 B
SQL
5 lines
120 B
SQL
-- Your SQL goes here
|
|
create table signup_links (
|
|
id bigint primary key not null,
|
|
created_at bigint not null
|
|
);
|