about summary refs log tree commit diff
path: root/db/migrate/20170928082043_create_email_domain_blocks.rb
blob: 2baed54ef6259fab915b9844a4c68840bd172406 (plain) (blame)
1
2
3
4
5
6
7
8
9
class CreateEmailDomainBlocks < ActiveRecord::Migration[5.2]
  def change
    create_table :email_domain_blocks do |t|
      t.string :domain, null: false

      t.timestamps
    end
  end
end