mvhub-dev team mailing list archive
-
mvhub-dev team
-
Mailing list archive
-
Message #00310
[Branch ~mvhub-commit/mvhub/trunk] Rev 414: changed order of schema updates to kludge around diffs in production db and development db
------------------------------------------------------------
revno: 414
committer: Dan MacNeil <dan@xxxxxxxxxx>
branch nick: trunk
timestamp: Fri 2010-06-18 14:56:01 -0400
message:
changed order of schema updates to kludge around diffs in production db and development db
modified:
app-mvhub/setup/database/sql/004_remove_unused_tables_and_seq.sql
--
lp:mvhub
https://code.launchpad.net/~mvhub-commit/mvhub/trunk
Your team MVHub Developers is subscribed to branch lp:mvhub.
To unsubscribe from this branch go to https://code.launchpad.net/~mvhub-commit/mvhub/trunk/+edit-subscription
=== modified file 'app-mvhub/setup/database/sql/004_remove_unused_tables_and_seq.sql'
--- app-mvhub/setup/database/sql/004_remove_unused_tables_and_seq.sql 2010-06-10 20:15:47 +0000
+++ app-mvhub/setup/database/sql/004_remove_unused_tables_and_seq.sql 2010-06-18 18:56:01 +0000
@@ -4,8 +4,8 @@
INSERT INTO version_log ( version,note )
VALUES (4,'Remove user_type, log_category_search, and web_request tables.');
+DROP SEQUENCE user_type_type_id_seq, log_category_search_search_id_seq, web_requests_id_seq;
+
DROP TABLE user_type, log_category_search, web_requests CASCADE;
-
-DROP SEQUENCE user_type_type_id_seq, log_category_search_search_id_seq, web_requests_id_seq;
COMMIT;