merged from upstream

This commit is contained in:
raluka 2015-10-14 16:02:40 +02:00
commit 9eb47bd3f0
19 changed files with 82 additions and 58 deletions

View file

@ -0,0 +1,9 @@
class ChangePostalcodeFormatInVenues < ActiveRecord::Migration
def up
change_column :venues, :postalcode, :string
end
def down
raise ActiveRecord::IrreversibleMigration.new('Cannot reverse migration.')
end
end