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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
3578eb45
Commit
3578eb45
authored
Nov 21, 2018
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add database indices to encrypted runner tokens
parent
88e2b6ea
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
25 additions
and
4 deletions
+25
-4
db/migrate/20181116141415_add_encrypted_runners_token_to_namespaces.rb
...181116141415_add_encrypted_runners_token_to_namespaces.rb
+0
-1
db/migrate/20181116141504_add_encrypted_runners_token_to_projects.rb
...20181116141504_add_encrypted_runners_token_to_projects.rb
+0
-1
db/migrate/20181120151656_add_token_encrypted_to_ci_runners.rb
...grate/20181120151656_add_token_encrypted_to_ci_runners.rb
+0
-1
db/migrate/20181121101802_add_encrypted_runner_tokens_indices.rb
...ate/20181121101802_add_encrypted_runner_tokens_indices.rb
+21
-0
db/schema.rb
db/schema.rb
+4
-1
No files found.
db/migrate/20181116141415_add_encrypted_runners_token_to_namespaces.rb
View file @
3578eb45
...
...
@@ -7,6 +7,5 @@ class AddEncryptedRunnersTokenToNamespaces < ActiveRecord::Migration
def
change
add_column
:namespaces
,
:runners_token_encrypted
,
:string
# TODO index
end
end
db/migrate/20181116141504_add_encrypted_runners_token_to_projects.rb
View file @
3578eb45
...
...
@@ -7,6 +7,5 @@ class AddEncryptedRunnersTokenToProjects < ActiveRecord::Migration
def
change
add_column
:projects
,
:runners_token_encrypted
,
:string
# TODO index
end
end
db/migrate/20181120151656_add_token_encrypted_to_ci_runners.rb
View file @
3578eb45
...
...
@@ -7,6 +7,5 @@ class AddTokenEncryptedToCiRunners < ActiveRecord::Migration
def
change
add_column
:ci_runners
,
:token_encrypted
,
:string
# TODO index
end
end
db/migrate/20181121101802_add_encrypted_runner_tokens_indices.rb
0 → 100644
View file @
3578eb45
# frozen_string_literal: true
class
AddEncryptedRunnerTokensIndices
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
DOWNTIME
=
false
disable_ddl_transaction!
def
up
add_concurrent_index
:namespaces
,
:runners_token_encrypted
,
unique:
true
add_concurrent_index
:projects
,
:runners_token_encrypted
,
unique:
true
add_concurrent_index
:ci_runners
,
:token_encrypted
,
unique:
true
end
def
down
remove_concurrent_index
:ci_runners
,
:token_encrypted
remove_concurrent_index
:projects
,
:runners_token_encrypted
remove_concurrent_index
:namespaces
,
:runners_token_encrypted
end
end
db/schema.rb
View file @
3578eb45
...
...
@@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord
::
Schema
.
define
(
version:
2018112
0151656
)
do
ActiveRecord
::
Schema
.
define
(
version:
2018112
1101802
)
do
# These are extensions that must be enabled in order to support this database
enable_extension
"plpgsql"
...
...
@@ -527,6 +527,7 @@ ActiveRecord::Schema.define(version: 20181120151656) do
t
.
index
[
"locked"
],
name:
"index_ci_runners_on_locked"
,
using: :btree
t
.
index
[
"runner_type"
],
name:
"index_ci_runners_on_runner_type"
,
using: :btree
t
.
index
[
"token"
],
name:
"index_ci_runners_on_token"
,
using: :btree
t
.
index
[
"token_encrypted"
],
name:
"index_ci_runners_on_token_encrypted"
,
unique:
true
,
using: :btree
end
create_table
"ci_stages"
,
force: :cascade
do
|
t
|
...
...
@@ -1334,6 +1335,7 @@ ActiveRecord::Schema.define(version: 20181120151656) do
t
.
index
[
"path"
],
name:
"index_namespaces_on_path_trigram"
,
using: :gin
,
opclasses:
{
"path"
=>
"gin_trgm_ops"
}
t
.
index
[
"require_two_factor_authentication"
],
name:
"index_namespaces_on_require_two_factor_authentication"
,
using: :btree
t
.
index
[
"runners_token"
],
name:
"index_namespaces_on_runners_token"
,
unique:
true
,
using: :btree
t
.
index
[
"runners_token_encrypted"
],
name:
"index_namespaces_on_runners_token_encrypted"
,
unique:
true
,
using: :btree
t
.
index
[
"type"
],
name:
"index_namespaces_on_type"
,
using: :btree
end
...
...
@@ -1669,6 +1671,7 @@ ActiveRecord::Schema.define(version: 20181120151656) do
t
.
index
[
"repository_storage"
,
"created_at"
],
name:
"idx_project_repository_check_partial"
,
where:
"(last_repository_check_at IS NULL)"
,
using: :btree
t
.
index
[
"repository_storage"
],
name:
"index_projects_on_repository_storage"
,
using: :btree
t
.
index
[
"runners_token"
],
name:
"index_projects_on_runners_token"
,
using: :btree
t
.
index
[
"runners_token_encrypted"
],
name:
"index_projects_on_runners_token_encrypted"
,
unique:
true
,
using: :btree
t
.
index
[
"star_count"
],
name:
"index_projects_on_star_count"
,
using: :btree
t
.
index
[
"visibility_level"
],
name:
"index_projects_on_visibility_level"
,
using: :btree
end
...
...
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