internetee-registry/db/migrate/20141216075056_create_contact_statuses.rb
2021-04-26 18:54:26 +05:00

10 lines
229 B
Ruby

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