mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 19:00:32 -06:00
13 lines
379 B
Ruby
13 lines
379 B
Ruby
class MakeUserAuthTokenIndexUnique < ActiveRecord::Migration
|
|
def up
|
|
remove_index :user_auth_tokens, [:auth_token]
|
|
remove_index :user_auth_tokens, [:prev_auth_token]
|
|
add_index :user_auth_tokens, [:auth_token], unique: true
|
|
add_index :user_auth_tokens, [:prev_auth_token], unique: true
|
|
end
|
|
|
|
def down
|
|
# no op, this should always have been unique
|
|
end
|
|
end
|