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

View file

@ -11,6 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20151005161518) do
create_table "ahoy_events", force: true do |t|