mirror of
https://github.com/SrIzan10/hc-harbor.git
synced 2026-05-01 10:45:21 +00:00
7 lines
208 B
Ruby
7 lines
208 B
Ruby
class AddGithubIndexToUsers < ActiveRecord::Migration[8.0]
|
|
def change
|
|
add_index :users, [ :github_uid, :github_access_token ],
|
|
name: "index_users_on_github_uid_and_access_token"
|
|
end
|
|
end
|