1
0

20190705002136_create_domain_allows.rb 251 B

1234567891011
  1. # frozen_string_literal: true
  2. class CreateDomainAllows < ActiveRecord::Migration[5.2]
  3. def change
  4. create_table :domain_allows do |t|
  5. t.string :domain, default: '', null: false, index: { unique: true }
  6. t.timestamps
  7. end
  8. end
  9. end