]> git.ozlabs.org Git - patchwork/commitdiff
sql: remove development migration script
authorJeremy Kerr <jk@ozlabs.org>
Thu, 8 Dec 2011 14:28:22 +0000 (22:28 +0800)
committerJeremy Kerr <jk@ozlabs.org>
Thu, 8 Dec 2011 14:28:22 +0000 (22:28 +0800)
The projectmaintainer heirachy hasn't been implemented, so we don't need
the migration script yet.

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
lib/sql/migration/006-maintainer-project-attributes.sql [deleted file]

diff --git a/lib/sql/migration/006-maintainer-project-attributes.sql b/lib/sql/migration/006-maintainer-project-attributes.sql
deleted file mode 100644 (file)
index 86b82e1..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-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;