internetee-registry/db/migrate/20141216075056_create_contact_statuses.rb
2014-12-18 13:53:01 +02:00

10 lines
224 B
Ruby

class CreateContactStatuses < ActiveRecord::Migration
def change
create_table :contact_statuses do |t|
t.string :value
t.string :description
t.belongs_to :contact
t.timestamps
end
end
end