2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
class CreateBlockedEmails < ActiveRecord::Migration[4.2]
|
2013-07-25 13:01:27 -04:00
|
|
|
def change
|
|
|
|
create_table :blocked_emails do |t|
|
|
|
|
t.string :email, null: false
|
|
|
|
t.integer :action_type, null: false
|
|
|
|
t.integer :match_count, null: false, default: 0
|
|
|
|
t.datetime :last_match_at
|
2017-08-07 11:48:36 -04:00
|
|
|
t.timestamps null: false
|
2013-07-25 13:01:27 -04:00
|
|
|
end
|
|
|
|
add_index :blocked_emails, :email, unique: true
|
|
|
|
end
|
|
|
|
end
|