track db migrations

This commit is contained in:
BDC 2013-04-18 23:44:01 -04:00
parent f53602294f
commit 24de9ac050
2 changed files with 5 additions and 0 deletions

3
.gitignore vendored
View File

@ -29,3 +29,6 @@ www/cache/*
# huh?
workflow*
# include db migrations
!db/migrate/*.sql

View File

@ -0,0 +1,2 @@
ALTER TABLE `restaurant` ADD `open_for_business` TINYINT( 1 ) NOT NULL DEFAULT '1' AFTER `active`