summaryrefslogtreecommitdiffstats
path: root/lib/sql/migration/006-maintainer-project-attributes.sql
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sql/migration/006-maintainer-project-attributes.sql')
-rw-r--r--lib/sql/migration/006-maintainer-project-attributes.sql22
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/sql/migration/006-maintainer-project-attributes.sql b/lib/sql/migration/006-maintainer-project-attributes.sql
new file mode 100644
index 0000000..86b82e1
--- /dev/null
+++ b/lib/sql/migration/006-maintainer-project-attributes.sql
@@ -0,0 +1,22 @@
+BEGIN;
+
+CREATE TABLE "patchwork_projectmaintainer" (
+ "id" serial NOT NULL PRIMARY KEY,
+ "project_id" integer NOT NULL
+ REFERENCES "patchwork_project" ("id") DEFERRABLE INITIALLY DEFERRED,
+ "user_id" integer NOT NULL
+ REFERENCES "auth_user" ("id") DEFERRABLE INITIALLY DEFERRED,
+ "master" boolean NOT NULL
+);
+
+INSERT INTO patchwork_projectmaintainer
+ (project_id, user_id, master)
+ SELECT project_id, patchwork_userprofile.user_id, False
+ FROM patchwork_userprofile_maintainer_projects
+ INNER JOIN patchwork_userprofile
+ ON patchwork_userprofile.id =
+ patchwork_userprofile_maintainer_projects.userprofile_id;
+
+--DROP TABLE patchwork_userprofile_maintainer_projects;
+
+COMMIT;