mirror of
https://github.com/internetee/registry.git
synced 2025-05-16 17:37:17 +02:00
9 lines
209 B
Ruby
9 lines
209 B
Ruby
class CreateDomainsStatuses < ActiveRecord::Migration
|
|
def change
|
|
create_table :domain_statuses do |t|
|
|
t.integer :domain_id
|
|
t.integer :setting_id
|
|
t.string :description
|
|
end
|
|
end
|
|
end
|