Add statuses to domain

This commit is contained in:
Martin Lensment 2014-08-19 13:43:01 +03:00
parent b0e9828a01
commit 32fc26b5a4
7 changed files with 60 additions and 10 deletions

View file

@ -0,0 +1,8 @@
class CreateDomainsStatuses < ActiveRecord::Migration
def change
create_table :domain_statuses do |t|
t.integer :domain_id
t.integer :setting_id
end
end
end