summaryrefslogtreecommitdiff
path: root/server/migrations/eyeballs.sql
diff options
context:
space:
mode:
Diffstat (limited to 'server/migrations/eyeballs.sql')
-rw-r--r--server/migrations/eyeballs.sql2
1 files changed, 2 insertions, 0 deletions
diff --git a/server/migrations/eyeballs.sql b/server/migrations/eyeballs.sql
index 9699e6c..aeb1470 100644
--- a/server/migrations/eyeballs.sql
+++ b/server/migrations/eyeballs.sql
@@ -14,6 +14,8 @@ CREATE TABLE IF NOT EXISTS users (
CREATE TABLE IF NOT EXISTS project_users (
project BIGINT UNSIGNED NOT NULL,
user BIGINT UNSIGNED NOT NULL,
+ default_role TINYINT UNSIGNED NOT NULL,
+ maintainer BOOLEAN NOT NULL DEFAULT 0,
PRIMARY KEY (project, user),
CONSTRAINT `fk_project_users_project`