2021-04-17 03:14:25 +02: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 06:13:55 +02:00
|
|
|
t.belongs_to :reference_account, null: false, foreign_key: { to_table: 'accounts' }
|
2021-04-17 03:14:25 +02:00
|
|
|
|
|
|
|
t.timestamps
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|