discourse/db/migrate/20160816052836_user_api_cli...

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

9 lines
218 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class UserApiClientIdIsUnique < ActiveRecord::Migration[4.2]
def change
remove_index :user_api_keys, [:client_id]
add_index :user_api_keys, [:client_id], unique: true
end
end