mirror of
https://codeberg.org/pronounscc/pronouns.cc.git
synced 2024-11-20 18:39:51 +01:00
10 lines
264 B
SQL
10 lines
264 B
SQL
-- +migrate Up
|
|
|
|
-- 2023-03-15: Add data export
|
|
|
|
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()
|
|
);
|