mirror of
https://github.com/modrinth/code.git
synced 2026-08-27 18:14:49 +00:00
9 lines
220 B
SQL
9 lines
220 B
SQL
CREATE TABLE payouts_runs(
|
|
period_start TIMESTAMPTZ PRIMARY KEY,
|
|
started_at TIMESTAMPTZ NOT NULL,
|
|
started_by BIGINT REFERENCES users(id)
|
|
ON DELETE SET NULL,
|
|
completed_at TIMESTAMPTZ,
|
|
adjustments JSONB NOT NULL
|
|
);
|