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

      t.timestamps
    end
  end
end