Files
discourse/db/migrate/20140818023700_index_email_tokens.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
148 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class IndexEmailTokens < ActiveRecord::Migration[4.2]
2014-08-18 12:38:27 +10:00
def change
add_index :email_tokens, [:user_id]
end
end