MarseyWorld/migrations/20241114-add-account-deleti...

8 lines
215 B
SQL

create table account_deletions (
user_id integer primary key,
created_utc integer not null
);
alter table account_deletions
add constraint account_deletions_user_fkey foreign key (user_id) references users(id);