Files
grecia/db/migrate/20160105121132_create_geozones.rb
2016-01-11 12:18:01 +01:00

12 lines
232 B
Ruby

class CreateGeozones < ActiveRecord::Migration
def change
create_table :geozones do |t|
t.string :name
t.string :html_map_coordinates
t.string :external_code
t.timestamps null: false
end
end
end