mirror of
https://github.com/internetee/registry.git
synced 2025-06-08 05:34:46 +02:00
10 lines
229 B
Ruby
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
|