diff options
Diffstat (limited to 'db/schema_0042-planned_reports.sql')
-rw-r--r-- | db/schema_0042-planned_reports.sql | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/db/schema_0042-planned_reports.sql b/db/schema_0042-planned_reports.sql new file mode 100644 index 000000000..55ad1cc64 --- /dev/null +++ b/db/schema_0042-planned_reports.sql @@ -0,0 +1,11 @@ +begin; + +create table user_planned_reports ( + id serial not null primary key, + user_id int references users(id) not null, + report_id int references problem(id) not null, + added timestamp not null default current_timestamp, + removed timestamp +); + +commit; |