adds Geozones 🗺

This commit is contained in:
Juanjo Bazán
2016-01-05 14:03:33 +01:00
parent 54badef191
commit d6abf44477
5 changed files with 39 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
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