mirror of
https://github.com/internetee/registry.git
synced 2025-05-16 17:37:17 +02:00
10 lines
224 B
Ruby
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
|