mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-01 21:47:16 +00:00
12 lines
232 B
Ruby
12 lines
232 B
Ruby
class CreateSuburbs < ActiveRecord::Migration
|
|
def change
|
|
create_table :suburbs do |t|
|
|
t.string :name
|
|
t.integer :postcode
|
|
t.float :latitude
|
|
t.float :longitude
|
|
t.integer :state_id
|
|
end
|
|
end
|
|
end
|