TTime/backend/migrations/0040_time_report_collections.sql
2024-02-26 00:13:39 +01:00

7 lines
No EOL
219 B
SQL

CREATE TABLE IF NOT EXISTS report_collection (
id INTEGER PRIMARY KEY,
project_id INTEGER NOT NULL,
date DATE NOT NULL,
signed_by INTEGER, -- NULL if not signed
FOREIGN KEY (signed_by) REFERENCES users (id)
);