You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
327 B
15 lines
327 B
10 years ago
|
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
|