2023-07-12 07:47:08 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2021-04-17 01:14:25 +00:00
|
|
|
class CreateCanonicalEmailBlocks < ActiveRecord::Migration[6.1]
|
|
|
|
def change
|
|
|
|
create_table :canonical_email_blocks do |t|
|
|
|
|
t.string :canonical_email_hash, null: false, default: '', index: { unique: true }
|
2021-06-30 04:13:55 +00:00
|
|
|
t.belongs_to :reference_account, null: false, foreign_key: { to_table: 'accounts' }
|
2021-04-17 01:14:25 +00:00
|
|
|
|
|
|
|
t.timestamps
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|