summaryrefslogtreecommitdiff
path: root/util/dump.sql
diff options
context:
space:
mode:
Diffstat (limited to 'util/dump.sql')
-rw-r--r--util/dump.sql3
1 files changed, 3 insertions, 0 deletions
diff --git a/util/dump.sql b/util/dump.sql
index b43d8c62..10d13b9d 100644
--- a/util/dump.sql
+++ b/util/dump.sql
@@ -103,6 +103,9 @@ CREATE TABLE releases_platforms (
CREATE TABLE releases_producers (
rid integer NOT NULL,
pid integer NOT NULL,
+ developer boolean NOT NULL DEFAULT FALSE,
+ publisher boolean NOT NULL DEFAULT TRUE,
+ CHECK(developer OR publisher),
PRIMARY KEY(pid, rid)
);