14 lines
251 B
Ruby
14 lines
251 B
Ruby
class CreateContacts < ActiveRecord::Migration[8.0]
|
|
def change
|
|
create_table :contacts do |t|
|
|
t.string :name
|
|
t.string :email
|
|
t.string :address
|
|
t.float :geo_long
|
|
t.float :geo_lat
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|