20170928082043_create_email_domain_blocks.rb 224 B

1234567891011
  1. # frozen_string_literal: true
  2. class CreateEmailDomainBlocks < ActiveRecord::Migration[5.2]
  3. def change
  4. create_table :email_domain_blocks do |t|
  5. t.string :domain, null: false
  6. t.timestamps
  7. end
  8. end
  9. end