mirror of
https://github.com/fspc/bike-database.git
synced 2025-03-10 16:53:24 -04:00
15 lines
327 B
Ruby
15 lines
327 B
Ruby
|
class CreateAgenciesTable < ActiveRecord::Migration
|
||
|
def change
|
||
|
create_table :agencies do |t|
|
||
|
t.string :agency_name
|
||
|
t.string :contact_name
|
||
|
t.string :street_address
|
||
|
t.string :city
|
||
|
t.string :state
|
||
|
t.string :postal_code
|
||
|
t.string :phone_number
|
||
|
t.string :email
|
||
|
end
|
||
|
end
|
||
|
end
|