Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
gitlab-ce
Commits
43d2e7b1
Commit
43d2e7b1
authored
Mar 26, 2013
by
Nihad Abbasov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add db index for authentication_token column in users table
parent
940c0508
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
db/migrate/20130326142630_add_index_to_users_authentication_token.rb
...20130326142630_add_index_to_users_authentication_token.rb
+5
-0
db/schema.rb
db/schema.rb
+2
-1
No files found.
db/migrate/20130326142630_add_index_to_users_authentication_token.rb
0 → 100644
View file @
43d2e7b1
class
AddIndexToUsersAuthenticationToken
<
ActiveRecord
::
Migration
def
change
add_index
:users
,
:authentication_token
,
unique:
true
end
end
db/schema.rb
View file @
43d2e7b1
...
...
@@ -11,7 +11,7 @@
#
# It's strongly recommended to check this file into your version control system.
ActiveRecord
::
Schema
.
define
(
:version
=>
20130
614132337
)
do
ActiveRecord
::
Schema
.
define
(
:version
=>
20130
326142630
)
do
create_table
"deploy_keys_projects"
,
:force
=>
true
do
|
t
|
t
.
integer
"deploy_key_id"
,
:null
=>
false
...
...
@@ -298,6 +298,7 @@ ActiveRecord::Schema.define(:version => 20130614132337) do
end
add_index
"users"
,
[
"admin"
],
:name
=>
"index_users_on_admin"
add_index
"users"
,
[
"authentication_token"
],
:name
=>
"index_users_on_authentication_token"
,
:unique
=>
true
add_index
"users"
,
[
"email"
],
:name
=>
"index_users_on_email"
,
:unique
=>
true
add_index
"users"
,
[
"extern_uid"
,
"provider"
],
:name
=>
"index_users_on_extern_uid_and_provider"
,
:unique
=>
true
add_index
"users"
,
[
"name"
],
:name
=>
"index_users_on_name"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment