1
0
mirror of https://github.com/fspc/bike-database.git synced 2025-03-10 16:53:24 -04:00
bike-database/db/migrate/20140921225115_create_agencies_table.rb

15 lines
327 B
Ruby
Raw Normal View History

2014-09-21 18:23:15 -05:00
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