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
Tatuya Kamada
gitlab-ce
Commits
4d72ca39
Commit
4d72ca39
authored
Apr 13, 2016
by
Kamil Trzcinski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove the use of default scope for Builds
parent
234be12e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
298 additions
and
315 deletions
+298
-315
app/models/ci/build.rb
app/models/ci/build.rb
+0
-11
db/schema.rb
db/schema.rb
+298
-304
No files found.
app/models/ci/build.rb
View file @
4d72ca39
...
@@ -37,8 +37,6 @@
...
@@ -37,8 +37,6 @@
module
Ci
module
Ci
class
Build
<
CommitStatus
class
Build
<
CommitStatus
LAZY_ATTRIBUTES
=
[
'trace'
]
belongs_to
:runner
,
class_name:
'Ci::Runner'
belongs_to
:runner
,
class_name:
'Ci::Runner'
belongs_to
:trigger_request
,
class_name:
'Ci::TriggerRequest'
belongs_to
:trigger_request
,
class_name:
'Ci::TriggerRequest'
belongs_to
:erased_by
,
class_name:
'User'
belongs_to
:erased_by
,
class_name:
'User'
...
@@ -56,20 +54,11 @@ module Ci
...
@@ -56,20 +54,11 @@ module Ci
acts_as_taggable
acts_as_taggable
# To prevent db load megabytes of data from trace
default_scope
->
{
select
(
Ci
::
Build
.
columns_without_lazy
)
}
before_destroy
{
project
}
before_destroy
{
project
}
after_create
:execute_hooks
after_create
:execute_hooks
class
<<
self
class
<<
self
def
columns_without_lazy
(
column_names
-
LAZY_ATTRIBUTES
).
map
do
|
column_name
|
"
#{
table_name
}
.
#{
column_name
}
"
end
end
def
last_month
def
last_month
where
(
'created_at > ?'
,
Date
.
today
-
1
.
month
)
where
(
'created_at > ?'
,
Date
.
today
-
1
.
month
)
end
end
...
...
db/schema.rb
View file @
4d72ca39
...
@@ -11,7 +11,7 @@
...
@@ -11,7 +11,7 @@
#
#
# It's strongly recommended that you check this file into your version control system.
# It's strongly recommended that you check this file into your version control system.
ActiveRecord
::
Schema
.
define
(
version:
2016041
1122626
)
do
ActiveRecord
::
Schema
.
define
(
version:
2016041
2175417
)
do
# These are extensions that must be enabled in order to support this database
# These are extensions that must be enabled in order to support this database
enable_extension
"plpgsql"
enable_extension
"plpgsql"
...
@@ -42,20 +42,20 @@ ActiveRecord::Schema.define(version: 20160411122626) do
...
@@ -42,20 +42,20 @@ ActiveRecord::Schema.define(version: 20160411122626) do
t
.
text
"sign_in_text"
t
.
text
"sign_in_text"
t
.
datetime
"created_at"
t
.
datetime
"created_at"
t
.
datetime
"updated_at"
t
.
datetime
"updated_at"
t
.
string
"home_page_url"
t
.
string
"home_page_url"
,
limit:
255
t
.
integer
"default_branch_protection"
,
default:
2
t
.
integer
"default_branch_protection"
,
default:
2
t
.
text
"restricted_visibility_levels"
t
.
text
"restricted_visibility_levels"
t
.
boolean
"version_check_enabled"
,
default:
true
t
.
integer
"max_attachment_size"
,
default:
10
,
null:
false
t
.
integer
"max_attachment_size"
,
default:
10
,
null:
false
t
.
integer
"default_project_visibility"
t
.
integer
"default_project_visibility"
t
.
integer
"default_snippet_visibility"
t
.
integer
"default_snippet_visibility"
t
.
text
"restricted_signup_domains"
t
.
text
"restricted_signup_domains"
t
.
boolean
"version_check_enabled"
,
default:
true
t
.
boolean
"user_oauth_applications"
,
default:
true
t
.
boolean
"user_oauth_applications"
,
default:
true
t
.
string
"after_sign_out_path"
t
.
string
"after_sign_out_path"
,
limit:
255
t
.
integer
"session_expire_delay"
,
default:
10080
,
null:
false
t
.
integer
"session_expire_delay"
,
default:
10080
,
null:
false
t
.
text
"import_sources"
t
.
text
"import_sources"
t
.
text
"help_page_text"
t
.
text
"help_page_text"
t
.
string
"admin_notification_email"
t
.
string
"admin_notification_email"
,
limit:
255
t
.
boolean
"shared_runners_enabled"
,
default:
true
,
null:
false
t
.
boolean
"shared_runners_enabled"
,
default:
true
,
null:
false
t
.
integer
"max_artifacts_size"
,
default:
100
,
null:
false
t
.
integer
"max_artifacts_size"
,
default:
100
,
null:
false
t
.
string
"runners_registration_token"
t
.
string
"runners_registration_token"
...
@@ -81,9 +81,9 @@ ActiveRecord::Schema.define(version: 20160411122626) do
...
@@ -81,9 +81,9 @@ ActiveRecord::Schema.define(version: 20160411122626) do
create_table
"audit_events"
,
force: :cascade
do
|
t
|
create_table
"audit_events"
,
force: :cascade
do
|
t
|
t
.
integer
"author_id"
,
null:
false
t
.
integer
"author_id"
,
null:
false
t
.
string
"type"
,
null:
false
t
.
string
"type"
,
limit:
255
,
null:
false
t
.
integer
"entity_id"
,
null:
false
t
.
integer
"entity_id"
,
null:
false
t
.
string
"entity_type"
,
null:
false
t
.
string
"entity_type"
,
limit:
255
,
null:
false
t
.
text
"details"
t
.
text
"details"
t
.
datetime
"created_at"
t
.
datetime
"created_at"
t
.
datetime
"updated_at"
t
.
datetime
"updated_at"
...
@@ -97,10 +97,10 @@ ActiveRecord::Schema.define(version: 20160411122626) do
...
@@ -97,10 +97,10 @@ ActiveRecord::Schema.define(version: 20160411122626) do
t
.
text
"message"
,
null:
false
t
.
text
"message"
,
null:
false
t
.
datetime
"starts_at"
t
.
datetime
"starts_at"
t
.
datetime
"ends_at"
t
.
datetime
"ends_at"
t
.
datetime
"created_at"
t
.
datetime
"created_at"
,
null:
false
t
.
datetime
"updated_at"
t
.
datetime
"updated_at"
,
null:
false
t
.
string
"color"
t
.
string
"color"
,
limit:
510
t
.
string
"font"
t
.
string
"font"
,
limit:
510
end
end
create_table
"ci_application_settings"
,
force: :cascade
do
|
t
|
create_table
"ci_application_settings"
,
force: :cascade
do
|
t
|
...
@@ -112,7 +112,7 @@ ActiveRecord::Schema.define(version: 20160411122626) do
...
@@ -112,7 +112,7 @@ ActiveRecord::Schema.define(version: 20160411122626) do
create_table
"ci_builds"
,
force: :cascade
do
|
t
|
create_table
"ci_builds"
,
force: :cascade
do
|
t
|
t
.
integer
"project_id"
t
.
integer
"project_id"
t
.
string
"status"
t
.
string
"status"
,
limit:
255
t
.
datetime
"finished_at"
t
.
datetime
"finished_at"
t
.
text
"trace"
t
.
text
"trace"
t
.
datetime
"created_at"
t
.
datetime
"created_at"
...
@@ -123,29 +123,29 @@ ActiveRecord::Schema.define(version: 20160411122626) do
...
@@ -123,29 +123,29 @@ ActiveRecord::Schema.define(version: 20160411122626) do
t
.
integer
"commit_id"
t
.
integer
"commit_id"
t
.
text
"commands"
t
.
text
"commands"
t
.
integer
"job_id"
t
.
integer
"job_id"
t
.
string
"name"
t
.
string
"name"
,
limit:
255
t
.
boolean
"deploy"
,
default:
false
t
.
boolean
"deploy"
,
default:
false
t
.
text
"options"
t
.
text
"options"
t
.
boolean
"allow_failure"
,
default:
false
,
null:
false
t
.
boolean
"allow_failure"
,
default:
false
,
null:
false
t
.
string
"stage"
t
.
string
"stage"
,
limit:
255
t
.
integer
"trigger_request_id"
t
.
integer
"trigger_request_id"
t
.
integer
"stage_idx"
t
.
integer
"stage_idx"
t
.
boolean
"tag"
t
.
boolean
"tag"
t
.
string
"ref"
t
.
string
"ref"
,
limit:
255
t
.
integer
"user_id"
t
.
integer
"user_id"
t
.
string
"type"
t
.
string
"type"
,
limit:
255
t
.
string
"target_url"
t
.
string
"target_url"
,
limit:
255
t
.
string
"description"
t
.
string
"description"
,
limit:
255
t
.
text
"artifacts_file"
t
.
text
"artifacts_file"
t
.
integer
"gl_project_id"
t
.
integer
"gl_project_id"
t
.
text
"artifacts_metadata"
t
.
text
"artifacts_metadata"
t
.
integer
"erased_by_id"
t
.
integer
"erased_by_id"
t
.
datetime
"erased_at"
t
.
datetime
"erased_at"
t
.
string
"plugin"
end
end
add_index
"ci_builds"
,
[
"commit_id"
,
"stage_idx"
,
"created_at"
],
name:
"index_ci_builds_on_commit_id_and_stage_idx_and_created_at"
,
using: :btree
add_index
"ci_builds"
,
[
"commit_id"
,
"stage_idx"
,
"created_at"
],
name:
"index_ci_builds_on_commit_id_and_stage_idx_and_created_at"
,
using: :btree
add_index
"ci_builds"
,
[
"commit_id"
,
"status"
,
"type"
],
name:
"index_ci_builds_on_commit_id_and_status_and_type"
,
using: :btree
add_index
"ci_builds"
,
[
"commit_id"
,
"status"
,
"type"
],
name:
"index_ci_builds_on_commit_id_and_status_and_type"
,
using: :btree
add_index
"ci_builds"
,
[
"commit_id"
,
"status"
],
name:
"index_ci_builds_on_commit_id_and_status"
,
using: :btree
add_index
"ci_builds"
,
[
"commit_id"
,
"type"
,
"name"
,
"ref"
],
name:
"index_ci_builds_on_commit_id_and_type_and_name_and_ref"
,
using: :btree
add_index
"ci_builds"
,
[
"commit_id"
,
"type"
,
"name"
,
"ref"
],
name:
"index_ci_builds_on_commit_id_and_type_and_name_and_ref"
,
using: :btree
add_index
"ci_builds"
,
[
"commit_id"
,
"type"
,
"ref"
],
name:
"index_ci_builds_on_commit_id_and_type_and_ref"
,
using: :btree
add_index
"ci_builds"
,
[
"commit_id"
,
"type"
,
"ref"
],
name:
"index_ci_builds_on_commit_id_and_type_and_ref"
,
using: :btree
add_index
"ci_builds"
,
[
"commit_id"
],
name:
"index_ci_builds_on_commit_id"
,
using: :btree
add_index
"ci_builds"
,
[
"commit_id"
],
name:
"index_ci_builds_on_commit_id"
,
using: :btree
...
@@ -155,13 +155,14 @@ ActiveRecord::Schema.define(version: 20160411122626) do
...
@@ -155,13 +155,14 @@ ActiveRecord::Schema.define(version: 20160411122626) do
add_index
"ci_builds"
,
[
"project_id"
],
name:
"index_ci_builds_on_project_id"
,
using: :btree
add_index
"ci_builds"
,
[
"project_id"
],
name:
"index_ci_builds_on_project_id"
,
using: :btree
add_index
"ci_builds"
,
[
"runner_id"
],
name:
"index_ci_builds_on_runner_id"
,
using: :btree
add_index
"ci_builds"
,
[
"runner_id"
],
name:
"index_ci_builds_on_runner_id"
,
using: :btree
add_index
"ci_builds"
,
[
"status"
],
name:
"index_ci_builds_on_status"
,
using: :btree
add_index
"ci_builds"
,
[
"status"
],
name:
"index_ci_builds_on_status"
,
using: :btree
add_index
"ci_builds"
,
[
"type"
,
"status"
,
"runner_id"
],
name:
"index_ci_builds_on_test2"
,
using: :btree
add_index
"ci_builds"
,
[
"type"
],
name:
"index_ci_builds_on_type"
,
using: :btree
add_index
"ci_builds"
,
[
"type"
],
name:
"index_ci_builds_on_type"
,
using: :btree
create_table
"ci_commits"
,
force: :cascade
do
|
t
|
create_table
"ci_commits"
,
force: :cascade
do
|
t
|
t
.
integer
"project_id"
t
.
integer
"project_id"
t
.
string
"ref"
t
.
string
"ref"
,
limit:
255
t
.
string
"sha"
t
.
string
"sha"
,
limit:
255
t
.
string
"before_sha"
t
.
string
"before_sha"
,
limit:
255
t
.
text
"push_data"
t
.
text
"push_data"
t
.
datetime
"created_at"
t
.
datetime
"created_at"
t
.
datetime
"updated_at"
t
.
datetime
"updated_at"
...
@@ -176,12 +177,15 @@ ActiveRecord::Schema.define(version: 20160411122626) do
...
@@ -176,12 +177,15 @@ ActiveRecord::Schema.define(version: 20160411122626) do
t
.
integer
"duration"
t
.
integer
"duration"
end
end
add_index
"ci_commits"
,
[
"gl_project_id"
,
"sha"
],
name:
"index_ci_commits_on_gl_project_id_and_sha"
,
using: :btree
add_index
"ci_commits"
,
[
"gl_project_id"
,
"status"
],
name:
"index_ci_commits_on_gl_project_id_and_status"
,
using: :btree
add_index
"ci_commits"
,
[
"gl_project_id"
],
name:
"index_ci_commits_on_gl_project_id"
,
using: :btree
add_index
"ci_commits"
,
[
"gl_project_id"
],
name:
"index_ci_commits_on_gl_project_id"
,
using: :btree
add_index
"ci_commits"
,
[
"project_id"
,
"committed_at"
,
"id"
],
name:
"index_ci_commits_on_project_id_and_committed_at_and_id"
,
using: :btree
add_index
"ci_commits"
,
[
"project_id"
,
"committed_at"
,
"id"
],
name:
"index_ci_commits_on_project_id_and_committed_at_and_id"
,
using: :btree
add_index
"ci_commits"
,
[
"project_id"
,
"committed_at"
],
name:
"index_ci_commits_on_project_id_and_committed_at"
,
using: :btree
add_index
"ci_commits"
,
[
"project_id"
,
"committed_at"
],
name:
"index_ci_commits_on_project_id_and_committed_at"
,
using: :btree
add_index
"ci_commits"
,
[
"project_id"
,
"sha"
],
name:
"index_ci_commits_on_project_id_and_sha"
,
using: :btree
add_index
"ci_commits"
,
[
"project_id"
,
"sha"
],
name:
"index_ci_commits_on_project_id_and_sha"
,
using: :btree
add_index
"ci_commits"
,
[
"project_id"
],
name:
"index_ci_commits_on_project_id"
,
using: :btree
add_index
"ci_commits"
,
[
"project_id"
],
name:
"index_ci_commits_on_project_id"
,
using: :btree
add_index
"ci_commits"
,
[
"sha"
],
name:
"index_ci_commits_on_sha"
,
using: :btree
add_index
"ci_commits"
,
[
"sha"
],
name:
"index_ci_commits_on_sha"
,
using: :btree
add_index
"ci_commits"
,
[
"status"
],
name:
"index_ci_commits_on_status"
,
using: :btree
create_table
"ci_events"
,
force: :cascade
do
|
t
|
create_table
"ci_events"
,
force: :cascade
do
|
t
|
t
.
integer
"project_id"
t
.
integer
"project_id"
...
@@ -202,11 +206,11 @@ ActiveRecord::Schema.define(version: 20160411122626) do
...
@@ -202,11 +206,11 @@ ActiveRecord::Schema.define(version: 20160411122626) do
t
.
boolean
"active"
,
default:
true
,
null:
false
t
.
boolean
"active"
,
default:
true
,
null:
false
t
.
datetime
"created_at"
t
.
datetime
"created_at"
t
.
datetime
"updated_at"
t
.
datetime
"updated_at"
t
.
string
"name"
t
.
string
"name"
,
limit:
255
t
.
boolean
"build_branches"
,
default:
true
,
null:
false
t
.
boolean
"build_branches"
,
default:
true
,
null:
false
t
.
boolean
"build_tags"
,
default:
false
,
null:
false
t
.
boolean
"build_tags"
,
default:
false
,
null:
false
t
.
string
"job_type"
,
default:
"parallel"
t
.
string
"job_type"
,
limit:
255
,
default:
"parallel"
t
.
string
"refs"
t
.
string
"refs"
,
limit:
255
t
.
datetime
"deleted_at"
t
.
datetime
"deleted_at"
end
end
...
@@ -214,24 +218,24 @@ ActiveRecord::Schema.define(version: 20160411122626) do
...
@@ -214,24 +218,24 @@ ActiveRecord::Schema.define(version: 20160411122626) do
add_index
"ci_jobs"
,
[
"project_id"
],
name:
"index_ci_jobs_on_project_id"
,
using: :btree
add_index
"ci_jobs"
,
[
"project_id"
],
name:
"index_ci_jobs_on_project_id"
,
using: :btree
create_table
"ci_projects"
,
force: :cascade
do
|
t
|
create_table
"ci_projects"
,
force: :cascade
do
|
t
|
t
.
string
"name"
t
.
string
"name"
,
limit:
255
t
.
integer
"timeout"
,
default:
3600
,
null:
false
t
.
integer
"timeout"
,
default:
3600
,
null:
false
t
.
datetime
"created_at"
t
.
datetime
"created_at"
t
.
datetime
"updated_at"
t
.
datetime
"updated_at"
t
.
string
"token"
t
.
string
"token"
,
limit:
255
t
.
string
"default_ref"
t
.
string
"default_ref"
,
limit:
255
t
.
string
"path"
t
.
string
"path"
,
limit:
255
t
.
boolean
"always_build"
,
default:
false
,
null:
false
t
.
boolean
"always_build"
,
default:
false
,
null:
false
t
.
integer
"polling_interval"
t
.
integer
"polling_interval"
t
.
boolean
"public"
,
default:
false
,
null:
false
t
.
boolean
"public"
,
default:
false
,
null:
false
t
.
string
"ssh_url_to_repo"
t
.
string
"ssh_url_to_repo"
,
limit:
255
t
.
integer
"gitlab_id"
t
.
integer
"gitlab_id"
t
.
boolean
"allow_git_fetch"
,
default:
true
,
null:
false
t
.
boolean
"allow_git_fetch"
,
default:
true
,
null:
false
t
.
string
"email_recipients"
,
default:
""
,
null:
false
t
.
string
"email_recipients"
,
limit:
255
,
default:
""
,
null:
false
t
.
boolean
"email_add_pusher"
,
default:
true
,
null:
false
t
.
boolean
"email_add_pusher"
,
default:
true
,
null:
false
t
.
boolean
"email_only_broken_builds"
,
default:
true
,
null:
false
t
.
boolean
"email_only_broken_builds"
,
default:
true
,
null:
false
t
.
string
"skip_refs"
t
.
string
"skip_refs"
,
limit:
255
t
.
string
"coverage_regex"
t
.
string
"coverage_regex"
,
limit:
255
t
.
boolean
"shared_runners_enabled"
,
default:
false
t
.
boolean
"shared_runners_enabled"
,
default:
false
t
.
text
"generated_yaml_config"
t
.
text
"generated_yaml_config"
end
end
...
@@ -251,18 +255,18 @@ ActiveRecord::Schema.define(version: 20160411122626) do
...
@@ -251,18 +255,18 @@ ActiveRecord::Schema.define(version: 20160411122626) do
add_index
"ci_runner_projects"
,
[
"runner_id"
],
name:
"index_ci_runner_projects_on_runner_id"
,
using: :btree
add_index
"ci_runner_projects"
,
[
"runner_id"
],
name:
"index_ci_runner_projects_on_runner_id"
,
using: :btree
create_table
"ci_runners"
,
force: :cascade
do
|
t
|
create_table
"ci_runners"
,
force: :cascade
do
|
t
|
t
.
string
"token"
t
.
string
"token"
,
limit:
255
t
.
datetime
"created_at"
t
.
datetime
"created_at"
t
.
datetime
"updated_at"
t
.
datetime
"updated_at"
t
.
string
"description"
t
.
string
"description"
,
limit:
255
t
.
datetime
"contacted_at"
t
.
datetime
"contacted_at"
t
.
boolean
"active"
,
default:
true
,
null:
false
t
.
boolean
"active"
,
default:
true
,
null:
false
t
.
boolean
"is_shared"
,
default:
false
t
.
boolean
"is_shared"
,
default:
false
t
.
string
"name"
t
.
string
"name"
,
limit:
255
t
.
string
"version"
t
.
string
"version"
,
limit:
255
t
.
string
"revision"
t
.
string
"revision"
,
limit:
255
t
.
string
"platform"
t
.
string
"platform"
,
limit:
255
t
.
string
"architecture"
t
.
string
"architecture"
,
limit:
255
end
end
add_index
"ci_runners"
,
[
"description"
],
name:
"index_ci_runners_on_description_trigram"
,
using: :gin
,
opclasses:
{
"description"
=>
"gin_trgm_ops"
}
add_index
"ci_runners"
,
[
"description"
],
name:
"index_ci_runners_on_description_trigram"
,
using: :gin
,
opclasses:
{
"description"
=>
"gin_trgm_ops"
}
...
@@ -270,8 +274,8 @@ ActiveRecord::Schema.define(version: 20160411122626) do
...
@@ -270,8 +274,8 @@ ActiveRecord::Schema.define(version: 20160411122626) do
add_index
"ci_runners"
,
[
"token"
],
name:
"index_ci_runners_on_token_trigram"
,
using: :gin
,
opclasses:
{
"token"
=>
"gin_trgm_ops"
}
add_index
"ci_runners"
,
[
"token"
],
name:
"index_ci_runners_on_token_trigram"
,
using: :gin
,
opclasses:
{
"token"
=>
"gin_trgm_ops"
}
create_table
"ci_services"
,
force: :cascade
do
|
t
|
create_table
"ci_services"
,
force: :cascade
do
|
t
|
t
.
string
"type"
t
.
string
"type"
,
limit:
255
t
.
string
"title"
t
.
string
"title"
,
limit:
255
t
.
integer
"project_id"
,
null:
false
t
.
integer
"project_id"
,
null:
false
t
.
datetime
"created_at"
t
.
datetime
"created_at"
t
.
datetime
"updated_at"
t
.
datetime
"updated_at"
...
@@ -282,7 +286,7 @@ ActiveRecord::Schema.define(version: 20160411122626) do
...
@@ -282,7 +286,7 @@ ActiveRecord::Schema.define(version: 20160411122626) do
add_index
"ci_services"
,
[
"project_id"
],
name:
"index_ci_services_on_project_id"
,
using: :btree
add_index
"ci_services"
,
[
"project_id"
],
name:
"index_ci_services_on_project_id"
,
using: :btree
create_table
"ci_sessions"
,
force: :cascade
do
|
t
|
create_table
"ci_sessions"
,
force: :cascade
do
|
t
|
t
.
string
"session_id"
,
null:
false
t
.
string
"session_id"
,
limit:
255
,
null:
false
t
.
text
"data"
t
.
text
"data"
t
.
datetime
"created_at"
t
.
datetime
"created_at"
t
.
datetime
"updated_at"
t
.
datetime
"updated_at"
...
@@ -294,9 +298,9 @@ ActiveRecord::Schema.define(version: 20160411122626) do
...
@@ -294,9 +298,9 @@ ActiveRecord::Schema.define(version: 20160411122626) do
create_table
"ci_taggings"
,
force: :cascade
do
|
t
|
create_table
"ci_taggings"
,
force: :cascade
do
|
t
|
t
.
integer
"tag_id"
t
.
integer
"tag_id"
t
.
integer
"taggable_id"
t
.
integer
"taggable_id"
t
.
string
"taggable_type"
t
.
string
"taggable_type"
,
limit:
255
t
.
integer
"tagger_id"
t
.
integer
"tagger_id"
t
.
string
"tagger_type"
t
.
string
"tagger_type"
,
limit:
255
t
.
string
"context"
,
limit:
128
t
.
string
"context"
,
limit:
128
t
.
datetime
"created_at"
t
.
datetime
"created_at"
end
end
...
@@ -305,31 +309,22 @@ ActiveRecord::Schema.define(version: 20160411122626) do
...
@@ -305,31 +309,22 @@ ActiveRecord::Schema.define(version: 20160411122626) do
add_index
"ci_taggings"
,
[
"taggable_id"
,
"taggable_type"
,
"context"
],
name:
"index_ci_taggings_on_taggable_id_and_taggable_type_and_context"
,
using: :btree
add_index
"ci_taggings"
,
[
"taggable_id"
,
"taggable_type"
,
"context"
],
name:
"index_ci_taggings_on_taggable_id_and_taggable_type_and_context"
,
using: :btree
create_table
"ci_tags"
,
force: :cascade
do
|
t
|
create_table
"ci_tags"
,
force: :cascade
do
|
t
|
t
.
string
"name"
t
.
string
"name"
,
limit:
255
t
.
integer
"taggings_count"
,
default:
0
t
.
integer
"taggings_count"
,
default:
0
end
end
add_index
"ci_tags"
,
[
"name"
],
name:
"index_ci_tags_on_name"
,
unique:
true
,
using: :btree
add_index
"ci_tags"
,
[
"name"
],
name:
"index_ci_tags_on_name"
,
unique:
true
,
using: :btree
create_table
"ci_trigger_requests"
,
force: :cascade
do
|
t
|
create_table
"ci_trigger_requests"
,
force: :cascade
do
|
t
|
t
.
integer
"trigger_id"
t
.
integer
"trigger_id"
,
null:
false
t
.
text
"variables"
t
.
text
"variables"
t
.
datetime
"created_at"
t
.
datetime
"created_at"
t
.
datetime
"updated_at"
t
.
datetime
"updated_at"
t
.
integer
"commit_id"
t
.
integer
"commit_id"
t
.
string
"sha"
t
.
string
"before_sha"
t
.
string
"ref"
t
.
string
"action"
t
.
string
"status"
t
.
datetime
"started_at"
t
.
datetime
"finished_at"
t
.
integer
"project_id"
t
.
string
"origin_ref"
end
end
create_table
"ci_triggers"
,
force: :cascade
do
|
t
|
create_table
"ci_triggers"
,
force: :cascade
do
|
t
|
t
.
string
"token"
t
.
string
"token"
,
limit:
255
t
.
integer
"project_id"
t
.
integer
"project_id"
t
.
datetime
"deleted_at"
t
.
datetime
"deleted_at"
t
.
datetime
"created_at"
t
.
datetime
"created_at"
...
@@ -342,18 +337,18 @@ ActiveRecord::Schema.define(version: 20160411122626) do
...
@@ -342,18 +337,18 @@ ActiveRecord::Schema.define(version: 20160411122626) do
create_table
"ci_variables"
,
force: :cascade
do
|
t
|
create_table
"ci_variables"
,
force: :cascade
do
|
t
|
t
.
integer
"project_id"
t
.
integer
"project_id"
t
.
string
"key"
t
.
string
"key"
,
limit:
255
t
.
text
"value"
t
.
text
"value"
t
.
text
"encrypted_value"
t
.
text
"encrypted_value"
t
.
string
"encrypted_value_salt"
t
.
string
"encrypted_value_salt"
,
limit:
255
t
.
string
"encrypted_value_iv"
t
.
string
"encrypted_value_iv"
,
limit:
255
t
.
integer
"gl_project_id"
t
.
integer
"gl_project_id"
end
end
add_index
"ci_variables"
,
[
"gl_project_id"
],
name:
"index_ci_variables_on_gl_project_id"
,
using: :btree
add_index
"ci_variables"
,
[
"gl_project_id"
],
name:
"index_ci_variables_on_gl_project_id"
,
using: :btree
create_table
"ci_web_hooks"
,
force: :cascade
do
|
t
|
create_table
"ci_web_hooks"
,
force: :cascade
do
|
t
|
t
.
string
"url"
,
null:
false
t
.
string
"url"
,
limit:
255
,
null:
false
t
.
integer
"project_id"
,
null:
false
t
.
integer
"project_id"
,
null:
false
t
.
datetime
"created_at"
t
.
datetime
"created_at"
t
.
datetime
"updated_at"
t
.
datetime
"updated_at"
...
@@ -362,30 +357,30 @@ ActiveRecord::Schema.define(version: 20160411122626) do
...
@@ -362,30 +357,30 @@ ActiveRecord::Schema.define(version: 20160411122626) do
create_table
"deploy_keys_projects"
,
force: :cascade
do
|
t
|
create_table
"deploy_keys_projects"
,
force: :cascade
do
|
t
|
t
.
integer
"deploy_key_id"
,
null:
false
t
.
integer
"deploy_key_id"
,
null:
false
t
.
integer
"project_id"
,
null:
false
t
.
integer
"project_id"
,
null:
false
t
.
datetime
"created_at"
t
.
datetime
"created_at"
,
null:
false
t
.
datetime
"updated_at"
t
.
datetime
"updated_at"
,
null:
false
end
end
add_index
"deploy_keys_projects"
,
[
"project_id"
],
name:
"index_deploy_keys_projects_on_project_id"
,
using: :btree
add_index
"deploy_keys_projects"
,
[
"project_id"
],
name:
"index_deploy_keys_projects_on_project_id"
,
using: :btree
create_table
"emails"
,
force: :cascade
do
|
t
|
create_table
"emails"
,
force: :cascade
do
|
t
|
t
.
integer
"user_id"
,
null:
false
t
.
integer
"user_id"
,
null:
false
t
.
string
"email"
,
null:
false
t
.
string
"email"
,
limit:
510
,
null:
false
t
.
datetime
"created_at"
t
.
datetime
"created_at"
t
.
datetime
"updated_at"
t
.
datetime
"updated_at"
end
end
add_index
"emails"
,
[
"email"
],
name:
"
index_emails_on_email
"
,
unique:
true
,
using: :btree
add_index
"emails"
,
[
"email"
],
name:
"
emails_email_key
"
,
unique:
true
,
using: :btree
add_index
"emails"
,
[
"user_id"
],
name:
"index_emails_on_user_id"
,
using: :btree
add_index
"emails"
,
[
"user_id"
],
name:
"index_emails_on_user_id"
,
using: :btree
create_table
"events"
,
force: :cascade
do
|
t
|
create_table
"events"
,
force: :cascade
do
|
t
|
t
.
string
"target_type"
t
.
string
"target_type"
,
limit:
510
t
.
integer
"target_id"
t
.
integer
"target_id"
t
.
string
"title"
t
.
string
"title"
,
limit:
510
t
.
text
"data"
t
.
text
"data"
t
.
integer
"project_id"
t
.
integer
"project_id"
t
.
datetime
"created_at"
t
.
datetime
"created_at"
,
null:
false
t
.
datetime
"updated_at"
t
.
datetime
"updated_at"
,
null:
false
t
.
integer
"action"
t
.
integer
"action"
t
.
integer
"author_id"
t
.
integer
"author_id"
end
end
...
@@ -400,15 +395,15 @@ ActiveRecord::Schema.define(version: 20160411122626) do
...
@@ -400,15 +395,15 @@ ActiveRecord::Schema.define(version: 20160411122626) do
create_table
"forked_project_links"
,
force: :cascade
do
|
t
|
create_table
"forked_project_links"
,
force: :cascade
do
|
t
|
t
.
integer
"forked_to_project_id"
,
null:
false
t
.
integer
"forked_to_project_id"
,
null:
false
t
.
integer
"forked_from_project_id"
,
null:
false
t
.
integer
"forked_from_project_id"
,
null:
false
t
.
datetime
"created_at"
t
.
datetime
"created_at"
,
null:
false
t
.
datetime
"updated_at"
t
.
datetime
"updated_at"
,
null:
false
end
end
add_index
"forked_project_links"
,
[
"forked_to_project_id"
],
name:
"
index_forked_project_links_on_forked_to_project_id
"
,
unique:
true
,
using: :btree
add_index
"forked_project_links"
,
[
"forked_to_project_id"
],
name:
"
forked_project_links_forked_to_project_id_key
"
,
unique:
true
,
using: :btree
create_table
"identities"
,
force: :cascade
do
|
t
|
create_table
"identities"
,
force: :cascade
do
|
t
|
t
.
string
"extern_uid"
t
.
string
"extern_uid"
,
limit:
255
t
.
string
"provider"
t
.
string
"provider"
,
limit:
255
t
.
integer
"user_id"
t
.
integer
"user_id"
t
.
datetime
"created_at"
t
.
datetime
"created_at"
t
.
datetime
"updated_at"
t
.
datetime
"updated_at"
...
@@ -418,21 +413,21 @@ ActiveRecord::Schema.define(version: 20160411122626) do
...
@@ -418,21 +413,21 @@ ActiveRecord::Schema.define(version: 20160411122626) do
add_index
"identities"
,
[
"user_id"
],
name:
"index_identities_on_user_id"
,
using: :btree
add_index
"identities"
,
[
"user_id"
],
name:
"index_identities_on_user_id"
,
using: :btree
create_table
"issues"
,
force: :cascade
do
|
t
|
create_table
"issues"
,
force: :cascade
do
|
t
|
t
.
string
"title"
t
.
string
"title"
,
limit:
510
t
.
integer
"assignee_id"
t
.
integer
"assignee_id"
t
.
integer
"author_id"
t
.
integer
"author_id"
t
.
integer
"project_id"
t
.
integer
"project_id"
t
.
datetime
"created_at"
t
.
datetime
"created_at"
t
.
datetime
"updated_at"
t
.
datetime
"updated_at"
t
.
integer
"position"
,
default:
0
t
.
integer
"position"
,
default:
0
t
.
string
"branch_name"
t
.
string
"branch_name"
,
limit:
510
t
.
text
"description"
t
.
text
"description"
t
.
integer
"milestone_id"
t
.
integer
"milestone_id"
t
.
string
"state"
t
.
string
"state"
,
limit:
510
t
.
integer
"iid"
t
.
integer
"iid"
t
.
integer
"updated_by_id"
t
.
integer
"updated_by_id"
t
.
integer
"moved_to_id"
t
.
boolean
"confidential"
,
default:
false
t
.
boolean
"confidential"
,
default:
false
t
.
integer
"moved_to_id"
t
.
datetime
"deleted_at"
t
.
datetime
"deleted_at"
end
end
...
@@ -455,9 +450,9 @@ ActiveRecord::Schema.define(version: 20160411122626) do
...
@@ -455,9 +450,9 @@ ActiveRecord::Schema.define(version: 20160411122626) do
t
.
datetime
"created_at"
t
.
datetime
"created_at"
t
.
datetime
"updated_at"
t
.
datetime
"updated_at"
t
.
text
"key"
t
.
text
"key"
t
.
string
"title"
t
.
string
"title"
,
limit:
510
t
.
string
"type"
t
.
string
"type"
,
limit:
510
t
.
string
"fingerprint"
t
.
string
"fingerprint"
,
limit:
510
t
.
boolean
"public"
,
default:
false
,
null:
false
t
.
boolean
"public"
,
default:
false
,
null:
false
end
end
...
@@ -467,7 +462,7 @@ ActiveRecord::Schema.define(version: 20160411122626) do
...
@@ -467,7 +462,7 @@ ActiveRecord::Schema.define(version: 20160411122626) do
create_table
"label_links"
,
force: :cascade
do
|
t
|
create_table
"label_links"
,
force: :cascade
do
|
t
|
t
.
integer
"label_id"
t
.
integer
"label_id"
t
.
integer
"target_id"
t
.
integer
"target_id"
t
.
string
"target_type"
t
.
string
"target_type"
,
limit:
255
t
.
datetime
"created_at"
t
.
datetime
"created_at"
t
.
datetime
"updated_at"
t
.
datetime
"updated_at"
end
end
...
@@ -476,8 +471,8 @@ ActiveRecord::Schema.define(version: 20160411122626) do
...
@@ -476,8 +471,8 @@ ActiveRecord::Schema.define(version: 20160411122626) do
add_index
"label_links"
,
[
"target_id"
,
"target_type"
],
name:
"index_label_links_on_target_id_and_target_type"
,
using: :btree
add_index
"label_links"
,
[
"target_id"
,
"target_type"
],
name:
"index_label_links_on_target_id_and_target_type"
,
using: :btree
create_table
"labels"
,
force: :cascade
do
|
t
|
create_table
"labels"
,
force: :cascade
do
|
t
|
t
.
string
"title"
t
.
string
"title"
,
limit:
255
t
.
string
"color"
t
.
string
"color"
,
limit:
255
t
.
integer
"project_id"
t
.
integer
"project_id"
t
.
datetime
"created_at"
t
.
datetime
"created_at"
t
.
datetime
"updated_at"
t
.
datetime
"updated_at"
...
@@ -488,11 +483,11 @@ ActiveRecord::Schema.define(version: 20160411122626) do
...
@@ -488,11 +483,11 @@ ActiveRecord::Schema.define(version: 20160411122626) do
add_index
"labels"
,
[
"project_id"
],
name:
"index_labels_on_project_id"
,
using: :btree
add_index
"labels"
,
[
"project_id"
],
name:
"index_labels_on_project_id"
,
using: :btree
create_table
"lfs_objects"
,
force: :cascade
do
|
t
|
create_table
"lfs_objects"
,
force: :cascade
do
|
t
|
t
.
string
"oid"
,
null:
false
t
.
string
"oid"
,
limit:
255
,
null:
false
t
.
integer
"size"
,
limit:
8
,
null:
false
t
.
integer
"size"
,
limit:
8
,
null:
false
t
.
datetime
"created_at"
t
.
datetime
"created_at"
t
.
datetime
"updated_at"
t
.
datetime
"updated_at"
t
.
string
"file"
t
.
string
"file"
,
limit:
255
end
end
add_index
"lfs_objects"
,
[
"oid"
],
name:
"index_lfs_objects_on_oid"
,
unique:
true
,
using: :btree
add_index
"lfs_objects"
,
[
"oid"
],
name:
"index_lfs_objects_on_oid"
,
unique:
true
,
using: :btree
...
@@ -509,15 +504,15 @@ ActiveRecord::Schema.define(version: 20160411122626) do
...
@@ -509,15 +504,15 @@ ActiveRecord::Schema.define(version: 20160411122626) do
create_table
"members"
,
force: :cascade
do
|
t
|
create_table
"members"
,
force: :cascade
do
|
t
|
t
.
integer
"access_level"
,
null:
false
t
.
integer
"access_level"
,
null:
false
t
.
integer
"source_id"
,
null:
false
t
.
integer
"source_id"
,
null:
false
t
.
string
"source_type"
,
null:
false
t
.
string
"source_type"
,
limit:
255
,
null:
false
t
.
integer
"user_id"
t
.
integer
"user_id"
t
.
integer
"notification_level"
,
null:
false
t
.
integer
"notification_level"
,
null:
false
t
.
string
"type"
t
.
string
"type"
,
limit:
255
t
.
datetime
"created_at"
t
.
datetime
"created_at"
t
.
datetime
"updated_at"
t
.
datetime
"updated_at"
t
.
integer
"created_by_id"
t
.
integer
"created_by_id"
t
.
string
"invite_email"
t
.
string
"invite_email"
,
limit:
255
t
.
string
"invite_token"
t
.
string
"invite_token"
,
limit:
255
t
.
datetime
"invite_accepted_at"
t
.
datetime
"invite_accepted_at"
end
end
...
@@ -529,7 +524,7 @@ ActiveRecord::Schema.define(version: 20160411122626) do
...
@@ -529,7 +524,7 @@ ActiveRecord::Schema.define(version: 20160411122626) do
add_index
"members"
,
[
"user_id"
],
name:
"index_members_on_user_id"
,
using: :btree
add_index
"members"
,
[
"user_id"
],
name:
"index_members_on_user_id"
,
using: :btree
create_table
"merge_request_diffs"
,
force: :cascade
do
|
t
|
create_table
"merge_request_diffs"
,
force: :cascade
do
|
t
|
t
.
string
"state"
t
.
string
"state"
,
limit:
255
t
.
text
"st_commits"
t
.
text
"st_commits"
t
.
text
"st_diffs"
t
.
text
"st_diffs"
t
.
integer
"merge_request_id"
,
null:
false
t
.
integer
"merge_request_id"
,
null:
false
...
@@ -542,24 +537,24 @@ ActiveRecord::Schema.define(version: 20160411122626) do
...
@@ -542,24 +537,24 @@ ActiveRecord::Schema.define(version: 20160411122626) do
add_index
"merge_request_diffs"
,
[
"merge_request_id"
],
name:
"index_merge_request_diffs_on_merge_request_id"
,
unique:
true
,
using: :btree
add_index
"merge_request_diffs"
,
[
"merge_request_id"
],
name:
"index_merge_request_diffs_on_merge_request_id"
,
unique:
true
,
using: :btree
create_table
"merge_requests"
,
force: :cascade
do
|
t
|
create_table
"merge_requests"
,
force: :cascade
do
|
t
|
t
.
string
"target_branch"
,
null:
false
t
.
string
"target_branch"
,
limit:
510
,
null:
false
t
.
string
"source_branch"
,
null:
false
t
.
string
"source_branch"
,
limit:
510
,
null:
false
t
.
integer
"source_project_id"
,
null:
false
t
.
integer
"source_project_id"
,
null:
false
t
.
integer
"author_id"
t
.
integer
"author_id"
t
.
integer
"assignee_id"
t
.
integer
"assignee_id"
t
.
string
"title"
t
.
string
"title"
,
limit:
510
t
.
datetime
"created_at"
t
.
datetime
"created_at"
t
.
datetime
"updated_at"
t
.
datetime
"updated_at"
t
.
integer
"milestone_id"
t
.
integer
"milestone_id"
t
.
string
"state"
t
.
string
"state"
,
limit:
510
t
.
string
"merge_status"
t
.
string
"merge_status"
,
limit:
510
t
.
integer
"target_project_id"
,
null:
false
t
.
integer
"target_project_id"
,
null:
false
t
.
integer
"iid"
t
.
integer
"iid"
t
.
text
"description"
t
.
text
"description"
t
.
integer
"position"
,
default:
0
t
.
integer
"position"
,
default:
0
t
.
datetime
"locked_at"
t
.
datetime
"locked_at"
t
.
integer
"updated_by_id"
t
.
integer
"updated_by_id"
t
.
string
"merge_error"
t
.
string
"merge_error"
,
limit:
255
t
.
text
"merge_params"
t
.
text
"merge_params"
t
.
boolean
"merge_when_build_succeeds"
,
default:
false
,
null:
false
t
.
boolean
"merge_when_build_succeeds"
,
default:
false
,
null:
false
t
.
integer
"merge_user_id"
t
.
integer
"merge_user_id"
...
@@ -582,13 +577,13 @@ ActiveRecord::Schema.define(version: 20160411122626) do
...
@@ -582,13 +577,13 @@ ActiveRecord::Schema.define(version: 20160411122626) do
add_index
"merge_requests"
,
[
"title"
],
name:
"index_merge_requests_on_title_trigram"
,
using: :gin
,
opclasses:
{
"title"
=>
"gin_trgm_ops"
}
add_index
"merge_requests"
,
[
"title"
],
name:
"index_merge_requests_on_title_trigram"
,
using: :gin
,
opclasses:
{
"title"
=>
"gin_trgm_ops"
}
create_table
"milestones"
,
force: :cascade
do
|
t
|
create_table
"milestones"
,
force: :cascade
do
|
t
|
t
.
string
"title"
,
null:
false
t
.
string
"title"
,
limit:
510
,
null:
false
t
.
integer
"project_id"
,
null:
false
t
.
integer
"project_id"
,
null:
false
t
.
text
"description"
t
.
text
"description"
t
.
date
"due_date"
t
.
date
"due_date"
t
.
datetime
"created_at"
t
.
datetime
"created_at"
,
null:
false
t
.
datetime
"updated_at"
t
.
datetime
"updated_at"
,
null:
false
t
.
string
"state"
t
.
string
"state"
,
limit:
510
t
.
integer
"iid"
t
.
integer
"iid"
end
end
...
@@ -601,14 +596,14 @@ ActiveRecord::Schema.define(version: 20160411122626) do
...
@@ -601,14 +596,14 @@ ActiveRecord::Schema.define(version: 20160411122626) do
add_index
"milestones"
,
[
"title"
],
name:
"index_milestones_on_title_trigram"
,
using: :gin
,
opclasses:
{
"title"
=>
"gin_trgm_ops"
}
add_index
"milestones"
,
[
"title"
],
name:
"index_milestones_on_title_trigram"
,
using: :gin
,
opclasses:
{
"title"
=>
"gin_trgm_ops"
}
create_table
"namespaces"
,
force: :cascade
do
|
t
|
create_table
"namespaces"
,
force: :cascade
do
|
t
|
t
.
string
"name"
,
null:
false
t
.
string
"name"
,
limit:
510
,
null:
false
t
.
string
"path"
,
null:
false
t
.
string
"path"
,
limit:
510
,
null:
false
t
.
integer
"owner_id"
t
.
integer
"owner_id"
t
.
datetime
"created_at"
t
.
datetime
"created_at"
,
null:
false
t
.
datetime
"updated_at"
t
.
datetime
"updated_at"
,
null:
false
t
.
string
"type"
t
.
string
"type"
,
limit:
510
t
.
string
"description"
,
default:
""
,
null:
false
t
.
string
"description"
,
limit:
510
,
default:
""
,
null:
false
t
.
string
"avatar"
t
.
string
"avatar"
,
limit:
510
t
.
boolean
"share_with_group_lock"
,
default:
false
t
.
boolean
"share_with_group_lock"
,
default:
false
t
.
integer
"visibility_level"
,
default:
20
,
null:
false
t
.
integer
"visibility_level"
,
default:
20
,
null:
false
end
end
...
@@ -624,17 +619,17 @@ ActiveRecord::Schema.define(version: 20160411122626) do
...
@@ -624,17 +619,17 @@ ActiveRecord::Schema.define(version: 20160411122626) do
create_table
"notes"
,
force: :cascade
do
|
t
|
create_table
"notes"
,
force: :cascade
do
|
t
|
t
.
text
"note"
t
.
text
"note"
t
.
string
"noteable_type"
t
.
string
"noteable_type"
,
limit:
510
t
.
integer
"author_id"
t
.
integer
"author_id"
t
.
datetime
"created_at"
t
.
datetime
"created_at"
t
.
datetime
"updated_at"
t
.
datetime
"updated_at"
t
.
integer
"project_id"
t
.
integer
"project_id"
t
.
string
"attachment"
t
.
string
"attachment"
,
limit:
510
t
.
string
"line_code"
t
.
string
"line_code"
,
limit:
510
t
.
string
"commit_id"
t
.
string
"commit_id"
,
limit:
510
t
.
integer
"noteable_id"
t
.
integer
"noteable_id"
t
.
boolean
"system"
,
default:
false
,
null:
false
t
.
text
"st_diff"
t
.
text
"st_diff"
t
.
boolean
"system"
,
null:
false
t
.
integer
"updated_by_id"
t
.
integer
"updated_by_id"
t
.
boolean
"is_award"
,
default:
false
,
null:
false
t
.
boolean
"is_award"
,
default:
false
,
null:
false
end
end
...
@@ -655,12 +650,12 @@ ActiveRecord::Schema.define(version: 20160411122626) do
...
@@ -655,12 +650,12 @@ ActiveRecord::Schema.define(version: 20160411122626) do
create_table
"oauth_access_grants"
,
force: :cascade
do
|
t
|
create_table
"oauth_access_grants"
,
force: :cascade
do
|
t
|
t
.
integer
"resource_owner_id"
,
null:
false
t
.
integer
"resource_owner_id"
,
null:
false
t
.
integer
"application_id"
,
null:
false
t
.
integer
"application_id"
,
null:
false
t
.
string
"token"
,
null:
false
t
.
string
"token"
,
limit:
255
,
null:
false
t
.
integer
"expires_in"
,
null:
false
t
.
integer
"expires_in"
,
null:
false
t
.
text
"redirect_uri"
,
null:
false
t
.
text
"redirect_uri"
,
null:
false
t
.
datetime
"created_at"
,
null:
false
t
.
datetime
"created_at"
,
null:
false
t
.
datetime
"revoked_at"
t
.
datetime
"revoked_at"
t
.
string
"scopes"
t
.
string
"scopes"
,
limit:
255
end
end
add_index
"oauth_access_grants"
,
[
"token"
],
name:
"index_oauth_access_grants_on_token"
,
unique:
true
,
using: :btree
add_index
"oauth_access_grants"
,
[
"token"
],
name:
"index_oauth_access_grants_on_token"
,
unique:
true
,
using: :btree
...
@@ -668,12 +663,12 @@ ActiveRecord::Schema.define(version: 20160411122626) do
...
@@ -668,12 +663,12 @@ ActiveRecord::Schema.define(version: 20160411122626) do
create_table
"oauth_access_tokens"
,
force: :cascade
do
|
t
|
create_table
"oauth_access_tokens"
,
force: :cascade
do
|
t
|
t
.
integer
"resource_owner_id"
t
.
integer
"resource_owner_id"
t
.
integer
"application_id"
t
.
integer
"application_id"
t
.
string
"token"
,
null:
false
t
.
string
"token"
,
limit:
255
,
null:
false
t
.
string
"refresh_token"
t
.
string
"refresh_token"
,
limit:
255
t
.
integer
"expires_in"
t
.
integer
"expires_in"
t
.
datetime
"revoked_at"
t
.
datetime
"revoked_at"
t
.
datetime
"created_at"
,
null:
false
t
.
datetime
"created_at"
,
null:
false
t
.
string
"scopes"
t
.
string
"scopes"
,
limit:
255
end
end
add_index
"oauth_access_tokens"
,
[
"refresh_token"
],
name:
"index_oauth_access_tokens_on_refresh_token"
,
unique:
true
,
using: :btree
add_index
"oauth_access_tokens"
,
[
"refresh_token"
],
name:
"index_oauth_access_tokens_on_refresh_token"
,
unique:
true
,
using: :btree
...
@@ -681,15 +676,15 @@ ActiveRecord::Schema.define(version: 20160411122626) do
...
@@ -681,15 +676,15 @@ ActiveRecord::Schema.define(version: 20160411122626) do
add_index
"oauth_access_tokens"
,
[
"token"
],
name:
"index_oauth_access_tokens_on_token"
,
unique:
true
,
using: :btree
add_index
"oauth_access_tokens"
,
[
"token"
],
name:
"index_oauth_access_tokens_on_token"
,
unique:
true
,
using: :btree
create_table
"oauth_applications"
,
force: :cascade
do
|
t
|
create_table
"oauth_applications"
,
force: :cascade
do
|
t
|
t
.
string
"name"
,
null:
false
t
.
string
"name"
,
limit:
255
,
null:
false
t
.
string
"uid"
,
null:
false
t
.
string
"uid"
,
limit:
255
,
null:
false
t
.
string
"secret"
,
null:
false
t
.
string
"secret"
,
limit:
255
,
null:
false
t
.
text
"redirect_uri"
,
null:
false
t
.
text
"redirect_uri"
,
null:
false
t
.
string
"scopes"
,
default:
""
,
null:
false
t
.
string
"scopes"
,
limit:
255
,
default:
""
,
null:
false
t
.
datetime
"created_at"
t
.
datetime
"created_at"
t
.
datetime
"updated_at"
t
.
datetime
"updated_at"
t
.
integer
"owner_id"
t
.
integer
"owner_id"
t
.
string
"owner_type"
t
.
string
"owner_type"
,
limit:
255
end
end
add_index
"oauth_applications"
,
[
"owner_id"
,
"owner_type"
],
name:
"index_oauth_applications_on_owner_id_and_owner_type"
,
using: :btree
add_index
"oauth_applications"
,
[
"owner_id"
,
"owner_type"
],
name:
"index_oauth_applications_on_owner_id_and_owner_type"
,
using: :btree
...
@@ -709,30 +704,30 @@ ActiveRecord::Schema.define(version: 20160411122626) do
...
@@ -709,30 +704,30 @@ ActiveRecord::Schema.define(version: 20160411122626) do
end
end
create_table
"projects"
,
force: :cascade
do
|
t
|
create_table
"projects"
,
force: :cascade
do
|
t
|
t
.
string
"name"
t
.
string
"name"
,
limit:
510
t
.
string
"path"
t
.
string
"path"
,
limit:
510
t
.
text
"description"
t
.
text
"description"
t
.
datetime
"created_at"
t
.
datetime
"created_at"
t
.
datetime
"updated_at"
t
.
datetime
"updated_at"
t
.
integer
"creator_id"
t
.
integer
"creator_id"
t
.
boolean
"issues_enabled"
,
default:
true
,
null:
false
t
.
boolean
"issues_enabled"
,
null:
false
t
.
boolean
"wall_enabled"
,
default:
true
,
null:
false
t
.
boolean
"wall_enabled"
,
null:
false
t
.
boolean
"merge_requests_enabled"
,
default:
true
,
null:
false
t
.
boolean
"merge_requests_enabled"
,
null:
false
t
.
boolean
"wiki_enabled"
,
default:
true
,
null:
false
t
.
boolean
"wiki_enabled"
,
null:
false
t
.
integer
"namespace_id"
t
.
integer
"namespace_id"
t
.
string
"issues_tracker"
,
default:
"gitlab"
,
null:
false
t
.
string
"issues_tracker"
,
limit:
510
,
default:
"gitlab"
,
null:
false
t
.
string
"issues_tracker_id"
t
.
string
"issues_tracker_id"
,
limit:
510
t
.
boolean
"snippets_enabled"
,
default:
true
,
null:
false
t
.
boolean
"snippets_enabled"
,
null:
false
t
.
datetime
"last_activity_at"
t
.
datetime
"last_activity_at"
t
.
string
"import_url"
t
.
string
"import_url"
,
limit:
510
t
.
integer
"visibility_level"
,
default:
0
,
null:
false
t
.
integer
"visibility_level"
,
default:
0
,
null:
false
t
.
boolean
"archived"
,
default:
false
,
null:
false
t
.
boolean
"archived"
,
null:
false
t
.
string
"avatar"
t
.
string
"import_status"
,
limit:
255
t
.
string
"import_status"
t
.
float
"repository_size"
,
default:
0.0
t
.
float
"repository_size"
,
default:
0.0
t
.
integer
"star_count"
,
default:
0
,
null:
false
t
.
integer
"star_count"
,
default:
0
,
null:
false
t
.
string
"import_type"
t
.
string
"import_type"
,
limit:
255
t
.
string
"import_source"
t
.
string
"import_source"
,
limit:
255
t
.
string
"avatar"
,
limit:
255
t
.
integer
"commit_count"
,
default:
0
t
.
integer
"commit_count"
,
default:
0
t
.
text
"import_error"
t
.
text
"import_error"
t
.
integer
"ci_id"
t
.
integer
"ci_id"
...
@@ -746,7 +741,6 @@ ActiveRecord::Schema.define(version: 20160411122626) do
...
@@ -746,7 +741,6 @@ ActiveRecord::Schema.define(version: 20160411122626) do
t
.
boolean
"public_builds"
,
default:
true
,
null:
false
t
.
boolean
"public_builds"
,
default:
true
,
null:
false
t
.
string
"main_language"
t
.
string
"main_language"
t
.
integer
"pushes_since_gc"
,
default:
0
t
.
integer
"pushes_since_gc"
,
default:
0
t
.
boolean
"images_enabled"
end
end
add_index
"projects"
,
[
"builds_enabled"
,
"shared_runners_enabled"
],
name:
"index_projects_on_builds_enabled_and_shared_runners_enabled"
,
using: :btree
add_index
"projects"
,
[
"builds_enabled"
,
"shared_runners_enabled"
],
name:
"index_projects_on_builds_enabled_and_shared_runners_enabled"
,
using: :btree
...
@@ -767,16 +761,16 @@ ActiveRecord::Schema.define(version: 20160411122626) do
...
@@ -767,16 +761,16 @@ ActiveRecord::Schema.define(version: 20160411122626) do
create_table
"protected_branches"
,
force: :cascade
do
|
t
|
create_table
"protected_branches"
,
force: :cascade
do
|
t
|
t
.
integer
"project_id"
,
null:
false
t
.
integer
"project_id"
,
null:
false
t
.
string
"name"
,
null:
false
t
.
string
"name"
,
limit:
510
,
null:
false
t
.
datetime
"created_at"
t
.
datetime
"created_at"
,
null:
false
t
.
datetime
"updated_at"
t
.
datetime
"updated_at"
,
null:
false
t
.
boolean
"developers_can_push"
,
default:
false
,
null:
false
t
.
boolean
"developers_can_push"
,
default:
false
,
null:
false
end
end
add_index
"protected_branches"
,
[
"project_id"
],
name:
"index_protected_branches_on_project_id"
,
using: :btree
add_index
"protected_branches"
,
[
"project_id"
],
name:
"index_protected_branches_on_project_id"
,
using: :btree
create_table
"releases"
,
force: :cascade
do
|
t
|
create_table
"releases"
,
force: :cascade
do
|
t
|
t
.
string
"tag"
t
.
string
"tag"
,
limit:
255
t
.
text
"description"
t
.
text
"description"
t
.
integer
"project_id"
t
.
integer
"project_id"
t
.
datetime
"created_at"
t
.
datetime
"created_at"
...
@@ -789,18 +783,18 @@ ActiveRecord::Schema.define(version: 20160411122626) do
...
@@ -789,18 +783,18 @@ ActiveRecord::Schema.define(version: 20160411122626) do
create_table
"sent_notifications"
,
force: :cascade
do
|
t
|
create_table
"sent_notifications"
,
force: :cascade
do
|
t
|
t
.
integer
"project_id"
t
.
integer
"project_id"
t
.
integer
"noteable_id"
t
.
integer
"noteable_id"
t
.
string
"noteable_type"
t
.
string
"noteable_type"
,
limit:
255
t
.
integer
"recipient_id"
t
.
integer
"recipient_id"
t
.
string
"commit_id"
t
.
string
"commit_id"
,
limit:
255
t
.
string
"reply_key"
,
null:
false
t
.
string
"reply_key"
,
limit:
255
,
null:
false
t
.
string
"line_code"
t
.
string
"line_code"
,
limit:
255
end
end
add_index
"sent_notifications"
,
[
"reply_key"
],
name:
"index_sent_notifications_on_reply_key"
,
unique:
true
,
using: :btree
add_index
"sent_notifications"
,
[
"reply_key"
],
name:
"index_sent_notifications_on_reply_key"
,
unique:
true
,
using: :btree
create_table
"services"
,
force: :cascade
do
|
t
|
create_table
"services"
,
force: :cascade
do
|
t
|
t
.
string
"type"
t
.
string
"type"
,
limit:
510
t
.
string
"title"
t
.
string
"title"
,
limit:
510
t
.
integer
"project_id"
t
.
integer
"project_id"
t
.
datetime
"created_at"
,
null:
false
t
.
datetime
"created_at"
,
null:
false
t
.
datetime
"updated_at"
,
null:
false
t
.
datetime
"updated_at"
,
null:
false
...
@@ -824,14 +818,14 @@ ActiveRecord::Schema.define(version: 20160411122626) do
...
@@ -824,14 +818,14 @@ ActiveRecord::Schema.define(version: 20160411122626) do
add_index
"services"
,
[
"template"
],
name:
"index_services_on_template"
,
using: :btree
add_index
"services"
,
[
"template"
],
name:
"index_services_on_template"
,
using: :btree
create_table
"snippets"
,
force: :cascade
do
|
t
|
create_table
"snippets"
,
force: :cascade
do
|
t
|
t
.
string
"title"
t
.
string
"title"
,
limit:
510
t
.
text
"content"
t
.
text
"content"
t
.
integer
"author_id"
,
null:
false
t
.
integer
"author_id"
,
null:
false
t
.
integer
"project_id"
t
.
integer
"project_id"
t
.
datetime
"created_at"
t
.
datetime
"created_at"
t
.
datetime
"updated_at"
t
.
datetime
"updated_at"
t
.
string
"file_name"
t
.
string
"file_name"
,
limit:
510
t
.
string
"type"
t
.
string
"type"
,
limit:
510
t
.
integer
"visibility_level"
,
default:
0
,
null:
false
t
.
integer
"visibility_level"
,
default:
0
,
null:
false
end
end
...
@@ -860,7 +854,7 @@ ActiveRecord::Schema.define(version: 20160411122626) do
...
@@ -860,7 +854,7 @@ ActiveRecord::Schema.define(version: 20160411122626) do
create_table
"subscriptions"
,
force: :cascade
do
|
t
|
create_table
"subscriptions"
,
force: :cascade
do
|
t
|
t
.
integer
"user_id"
t
.
integer
"user_id"
t
.
integer
"subscribable_id"
t
.
integer
"subscribable_id"
t
.
string
"subscribable_type"
t
.
string
"subscribable_type"
,
limit:
255
t
.
boolean
"subscribed"
t
.
boolean
"subscribed"
t
.
datetime
"created_at"
t
.
datetime
"created_at"
t
.
datetime
"updated_at"
t
.
datetime
"updated_at"
...
@@ -871,10 +865,10 @@ ActiveRecord::Schema.define(version: 20160411122626) do
...
@@ -871,10 +865,10 @@ ActiveRecord::Schema.define(version: 20160411122626) do
create_table
"taggings"
,
force: :cascade
do
|
t
|
create_table
"taggings"
,
force: :cascade
do
|
t
|
t
.
integer
"tag_id"
t
.
integer
"tag_id"
t
.
integer
"taggable_id"
t
.
integer
"taggable_id"
t
.
string
"taggable_type"
t
.
string
"taggable_type"
,
limit:
510
t
.
integer
"tagger_id"
t
.
integer
"tagger_id"
t
.
string
"tagger_type"
t
.
string
"tagger_type"
,
limit:
510
t
.
string
"context"
t
.
string
"context"
,
limit:
510
t
.
datetime
"created_at"
t
.
datetime
"created_at"
end
end
...
@@ -882,7 +876,7 @@ ActiveRecord::Schema.define(version: 20160411122626) do
...
@@ -882,7 +876,7 @@ ActiveRecord::Schema.define(version: 20160411122626) do
add_index
"taggings"
,
[
"taggable_id"
,
"taggable_type"
,
"context"
],
name:
"index_taggings_on_taggable_id_and_taggable_type_and_context"
,
using: :btree
add_index
"taggings"
,
[
"taggable_id"
,
"taggable_type"
,
"context"
],
name:
"index_taggings_on_taggable_id_and_taggable_type_and_context"
,
using: :btree
create_table
"tags"
,
force: :cascade
do
|
t
|
create_table
"tags"
,
force: :cascade
do
|
t
|
t
.
string
"name"
t
.
string
"name"
,
limit:
510
t
.
integer
"taggings_count"
,
default:
0
t
.
integer
"taggings_count"
,
default:
0
end
end
...
@@ -911,55 +905,55 @@ ActiveRecord::Schema.define(version: 20160411122626) do
...
@@ -911,55 +905,55 @@ ActiveRecord::Schema.define(version: 20160411122626) do
add_index
"todos"
,
[
"user_id"
],
name:
"index_todos_on_user_id"
,
using: :btree
add_index
"todos"
,
[
"user_id"
],
name:
"index_todos_on_user_id"
,
using: :btree
create_table
"users"
,
force: :cascade
do
|
t
|
create_table
"users"
,
force: :cascade
do
|
t
|
t
.
string
"email"
,
default:
""
,
null:
false
t
.
string
"email"
,
limit:
510
,
default:
""
,
null:
false
t
.
string
"encrypted_password"
,
default:
""
,
null:
false
t
.
string
"encrypted_password"
,
limit:
256
,
default:
""
,
null:
false
t
.
string
"reset_password_token"
t
.
string
"reset_password_token"
,
limit:
510
t
.
datetime
"reset_password_sent_at"
t
.
datetime
"reset_password_sent_at"
t
.
datetime
"remember_created_at"
t
.
datetime
"remember_created_at"
t
.
integer
"sign_in_count"
,
default:
0
t
.
integer
"sign_in_count"
,
default:
0
t
.
datetime
"current_sign_in_at"
t
.
datetime
"current_sign_in_at"
t
.
datetime
"last_sign_in_at"
t
.
datetime
"last_sign_in_at"
t
.
string
"current_sign_in_ip"
t
.
string
"current_sign_in_ip"
,
limit:
510
t
.
string
"last_sign_in_ip"
t
.
string
"last_sign_in_ip"
,
limit:
510
t
.
datetime
"created_at"
t
.
datetime
"created_at"
t
.
datetime
"updated_at"
t
.
datetime
"updated_at"
t
.
string
"name"
t
.
string
"name"
,
limit:
510
t
.
boolean
"admin"
,
default:
false
,
null:
false
t
.
boolean
"admin"
,
null:
false
t
.
integer
"projects_limit"
,
default:
10
t
.
integer
"projects_limit"
,
default:
10
t
.
string
"skype"
,
default:
""
,
null:
false
t
.
string
"skype"
,
limit:
510
,
default:
""
,
null:
false
t
.
string
"linkedin"
,
default:
""
,
null:
false
t
.
string
"linkedin"
,
limit:
510
,
default:
""
,
null:
false
t
.
string
"twitter"
,
default:
""
,
null:
false
t
.
string
"twitter"
,
limit:
510
,
default:
""
,
null:
false
t
.
string
"authentication_token"
t
.
string
"authentication_token"
,
limit:
510
t
.
integer
"theme_id"
,
default:
1
,
null:
false
t
.
integer
"theme_id"
,
default:
1
,
null:
false
t
.
string
"bio"
t
.
string
"bio"
,
limit:
510
t
.
integer
"failed_attempts"
,
default:
0
t
.
integer
"failed_attempts"
,
default:
0
t
.
datetime
"locked_at"
t
.
datetime
"locked_at"
t
.
string
"username"
t
.
string
"username"
,
limit:
510
t
.
boolean
"can_create_group"
,
default:
true
,
null:
false
t
.
boolean
"can_create_group"
,
null:
false
t
.
boolean
"can_create_team"
,
default:
true
,
null:
false
t
.
boolean
"can_create_team"
,
null:
false
t
.
string
"state"
t
.
string
"state"
,
limit:
510
t
.
integer
"color_scheme_id"
,
default:
1
,
null:
false
t
.
integer
"color_scheme_id"
,
default:
1
,
null:
false
t
.
integer
"notification_level"
,
default:
1
,
null:
false
t
.
integer
"notification_level"
,
default:
1
,
null:
false
t
.
datetime
"password_expires_at"
t
.
datetime
"password_expires_at"
t
.
integer
"created_by_id"
t
.
integer
"created_by_id"
t
.
datetime
"last_credential_check_at"
t
.
string
"avatar"
,
limit:
510
t
.
string
"avatar"
t
.
string
"confirmation_token"
,
limit:
510
t
.
string
"confirmation_token"
t
.
datetime
"confirmed_at"
t
.
datetime
"confirmed_at"
t
.
datetime
"confirmation_sent_at"
t
.
datetime
"confirmation_sent_at"
t
.
string
"unconfirmed_email"
t
.
string
"unconfirmed_email"
,
limit:
510
t
.
boolean
"hide_no_ssh_key"
,
default:
false
t
.
boolean
"hide_no_ssh_key"
t
.
string
"website_url"
,
default:
""
,
null:
false
t
.
string
"website_url"
,
limit:
510
,
default:
""
,
null:
false
t
.
string
"notification_email"
t
.
datetime
"last_credential_check_at"
t
.
string
"notification_email"
,
limit:
255
t
.
boolean
"hide_no_password"
,
default:
false
t
.
boolean
"hide_no_password"
,
default:
false
t
.
boolean
"password_automatically_set"
,
default:
false
t
.
boolean
"password_automatically_set"
,
default:
false
t
.
string
"location"
t
.
string
"location"
,
limit:
255
t
.
string
"encrypted_otp_secret"
t
.
string
"public_email"
,
limit:
255
,
default:
""
,
null:
false
t
.
string
"encrypted_otp_secret_iv"
t
.
string
"encrypted_otp_secret"
,
limit:
255
t
.
string
"encrypted_otp_secret_salt"
t
.
string
"encrypted_otp_secret_iv"
,
limit:
255
t
.
string
"encrypted_otp_secret_salt"
,
limit:
255
t
.
boolean
"otp_required_for_login"
,
default:
false
,
null:
false
t
.
boolean
"otp_required_for_login"
,
default:
false
,
null:
false
t
.
text
"otp_backup_codes"
t
.
text
"otp_backup_codes"
t
.
string
"public_email"
,
default:
""
,
null:
false
t
.
integer
"dashboard"
,
default:
0
t
.
integer
"dashboard"
,
default:
0
t
.
integer
"project_view"
,
default:
0
t
.
integer
"project_view"
,
default:
0
t
.
integer
"consumed_timestep"
t
.
integer
"consumed_timestep"
...
@@ -972,15 +966,15 @@ ActiveRecord::Schema.define(version: 20160411122626) do
...
@@ -972,15 +966,15 @@ ActiveRecord::Schema.define(version: 20160411122626) do
end
end
add_index
"users"
,
[
"admin"
],
name:
"index_users_on_admin"
,
using: :btree
add_index
"users"
,
[
"admin"
],
name:
"index_users_on_admin"
,
using: :btree
add_index
"users"
,
[
"authentication_token"
],
name:
"
index_users_on_authentication_token
"
,
unique:
true
,
using: :btree
add_index
"users"
,
[
"authentication_token"
],
name:
"
users_authentication_token_key
"
,
unique:
true
,
using: :btree
add_index
"users"
,
[
"confirmation_token"
],
name:
"
index_users_on_confirmation_token
"
,
unique:
true
,
using: :btree
add_index
"users"
,
[
"confirmation_token"
],
name:
"
users_confirmation_token_key
"
,
unique:
true
,
using: :btree
add_index
"users"
,
[
"created_at"
,
"id"
],
name:
"index_users_on_created_at_and_id"
,
using: :btree
add_index
"users"
,
[
"created_at"
,
"id"
],
name:
"index_users_on_created_at_and_id"
,
using: :btree
add_index
"users"
,
[
"current_sign_in_at"
],
name:
"index_users_on_current_sign_in_at"
,
using: :btree
add_index
"users"
,
[
"current_sign_in_at"
],
name:
"index_users_on_current_sign_in_at"
,
using: :btree
add_index
"users"
,
[
"email"
],
name:
"index_users_on_email"
,
unique:
true
,
using: :btree
add_index
"users"
,
[
"email"
],
name:
"index_users_on_email_trigram"
,
using: :gin
,
opclasses:
{
"email"
=>
"gin_trgm_ops"
}
add_index
"users"
,
[
"email"
],
name:
"index_users_on_email_trigram"
,
using: :gin
,
opclasses:
{
"email"
=>
"gin_trgm_ops"
}
add_index
"users"
,
[
"email"
],
name:
"users_email_key"
,
unique:
true
,
using: :btree
add_index
"users"
,
[
"name"
],
name:
"index_users_on_name"
,
using: :btree
add_index
"users"
,
[
"name"
],
name:
"index_users_on_name"
,
using: :btree
add_index
"users"
,
[
"name"
],
name:
"index_users_on_name_trigram"
,
using: :gin
,
opclasses:
{
"name"
=>
"gin_trgm_ops"
}
add_index
"users"
,
[
"name"
],
name:
"index_users_on_name_trigram"
,
using: :gin
,
opclasses:
{
"name"
=>
"gin_trgm_ops"
}
add_index
"users"
,
[
"reset_password_token"
],
name:
"
index_users_on_reset_password_token
"
,
unique:
true
,
using: :btree
add_index
"users"
,
[
"reset_password_token"
],
name:
"
users_reset_password_token_key
"
,
unique:
true
,
using: :btree
add_index
"users"
,
[
"username"
],
name:
"index_users_on_username"
,
using: :btree
add_index
"users"
,
[
"username"
],
name:
"index_users_on_username"
,
using: :btree
add_index
"users"
,
[
"username"
],
name:
"index_users_on_username_trigram"
,
using: :gin
,
opclasses:
{
"username"
=>
"gin_trgm_ops"
}
add_index
"users"
,
[
"username"
],
name:
"index_users_on_username_trigram"
,
using: :gin
,
opclasses:
{
"username"
=>
"gin_trgm_ops"
}
...
@@ -1000,11 +994,11 @@ ActiveRecord::Schema.define(version: 20160411122626) do
...
@@ -1000,11 +994,11 @@ ActiveRecord::Schema.define(version: 20160411122626) do
t
.
integer
"project_id"
t
.
integer
"project_id"
t
.
datetime
"created_at"
t
.
datetime
"created_at"
t
.
datetime
"updated_at"
t
.
datetime
"updated_at"
t
.
string
"type"
,
default:
"ProjectHook"
t
.
string
"type"
,
limit:
510
,
default:
"ProjectHook"
t
.
integer
"service_id"
t
.
integer
"service_id"
t
.
boolean
"push_events"
,
default:
true
,
null:
false
t
.
boolean
"push_events"
,
null:
false
t
.
boolean
"issues_events"
,
default:
false
,
null:
false
t
.
boolean
"issues_events"
,
null:
false
t
.
boolean
"merge_requests_events"
,
default:
false
,
null:
false
t
.
boolean
"merge_requests_events"
,
null:
false
t
.
boolean
"tag_push_events"
,
default:
false
t
.
boolean
"tag_push_events"
,
default:
false
t
.
boolean
"note_events"
,
default:
false
,
null:
false
t
.
boolean
"note_events"
,
default:
false
,
null:
false
t
.
boolean
"enable_ssl_verification"
,
default:
true
t
.
boolean
"enable_ssl_verification"
,
default:
true
...
...
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