Adding domain blocks
This commit is contained in:
parent
52d7f862d3
commit
22a8801dbc
13 changed files with 92 additions and 10 deletions
10
db/migrate/20161009120834_create_domain_blocks.rb
Normal file
10
db/migrate/20161009120834_create_domain_blocks.rb
Normal file
|
@ -0,0 +1,10 @@
|
|||
class CreateDomainBlocks < ActiveRecord::Migration[5.0]
|
||||
def change
|
||||
create_table :domain_blocks do |t|
|
||||
t.string :domain, null: false, default: ''
|
||||
t.timestamps
|
||||
end
|
||||
|
||||
add_index :domain_blocks, :domain, unique: true
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue