mirror of
https://github.com/internetee/registry.git
synced 2025-06-04 11:47:30 +02:00
9 lines
214 B
Ruby
9 lines
214 B
Ruby
class CreateDomainsStatuses < ActiveRecord::Migration[6.0]
|
|
def change
|
|
create_table :domain_statuses do |t|
|
|
t.integer :domain_id
|
|
t.integer :setting_id
|
|
t.string :description
|
|
end
|
|
end
|
|
end
|