← Back to team overview

mvhub-dev team mailing list archive

[Merge] lp:~omacneil/mvhub/drop_zip_table into lp:mvhub

 

Dan MacNeil has proposed merging lp:~omacneil/mvhub/drop_zip_table into lp:mvhub.

Requested reviews:
  MVHub devs with commit rights (mvhub-commit)


see commit log, simple change
-- 
https://code.launchpad.net/~omacneil/mvhub/drop_zip_table/+merge/29002
Your team MVHub Developers is subscribed to branch lp:mvhub.
=== 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:45:40 +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;


Follow ups