blob: b9448aca4e6229c9003a4c27ee72598c4d80683f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
class CreateAccountDomainBlocks < ActiveRecord::Migration[5.0]
def change
create_table :account_domain_blocks do |t|
t.integer :account_id
t.string :domain
t.timestamps
end
add_index :account_domain_blocks, [:account_id, :domain], unique: true
end
end
|