helps when you remember to add the files

This commit is contained in:
Kyle Drake 2013-06-20 14:57:45 -07:00
parent d0a359283e
commit cdb9f4290c
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,9 @@
Sequel.migration do
up {
DB.add_column :sites, :initial_index_changed, :boolean, default: false
}
down {
DB.drop_column :sites, :initial_index_changed
}
end