17 lines
479 B
Ruby
17 lines
479 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreateScreenedUrls < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :screened_urls do |t|
|
|
t.string :url, null: false
|
|
t.string :domain, null: false
|
|
t.integer :action_type, null: false
|
|
t.integer :match_count, null: false, default: 0
|
|
t.datetime :last_match_at
|
|
t.timestamps null: false
|
|
end
|
|
add_index :screened_urls, :url, unique: true
|
|
add_index :screened_urls, :last_match_at
|
|
end
|
|
end
|