mvhub-dev team mailing list archive
-
mvhub-dev team
-
Mailing list archive
-
Message #00392
[Branch ~mvhub-commit/mvhub/trunk] Rev 429: merged branch: drop_zip_table
Merge authors:
Dan MacNeil (omacneil)
Related merge proposals:
https://code.launchpad.net/~omacneil/mvhub/drop_zip_table/+merge/29002
proposed by: Dan MacNeil (omacneil)
review: Approve - Lee Goodrich (leegoodrich)
------------------------------------------------------------
revno: 429 [merge]
committer: Dan MacNeil <dan@xxxxxxxxxxxx>
branch nick: trunk
timestamp: Thu 2010-07-01 11:18:21 -0400
message:
merged branch: drop_zip_table
added:
app-mvhub/setup/database/sql/008_drop_zip_distance_table.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
=== added file 'app-mvhub/setup/database/sql/008_drop_zip_distance_table.sql'
--- app-mvhub/setup/database/sql/008_drop_zip_distance_table.sql 1970-01-01 00:00:00 +0000
+++ app-mvhub/setup/database/sql/008_drop_zip_distance_table.sql 2010-07-01 14:31:16 +0000
@@ -0,0 +1,8 @@
+--add version number and note before you add the other sql
+BEGIN;
+INSERT INTO version_log ( version,note )
+ VALUES (8,'dropped zip_distances table');
+
+DROP TABLE IF EXISTS zip_distances CASCADE;
+
+COMMIT;