mirror of
https://codeberg.org/pronounscc/pronouns.cc.git
synced 2024-11-20 10:19:51 +01:00
14 lines
308 B
SQL
14 lines
308 B
SQL
-- 2023-03-15: Add data export
|
|
|
|
-- +migrate Up
|
|
|
|
create table data_exports (
|
|
id serial primary key,
|
|
user_id text not null references users (id) on delete cascade,
|
|
filename text not null,
|
|
created_at timestamptz not null default now()
|
|
);
|
|
|
|
-- +migrate Down
|
|
|
|
drop table data_exports;
|