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

8 lines
215 B
MySQL
Raw Normal View History

2024-11-14 17:20:30 +00:00
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);