discourse/db/migrate/20130813204212_create_scree...

15 lines
443 B
Ruby

class CreateScreenedUrls < ActiveRecord::Migration
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