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
55e5912e
Commit
55e5912e
authored
Jun 08, 2018
by
Micaël Bergeron
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
trying to fix the specs
parent
a6386bf2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
config/initializers/1_settings.rb
config/initializers/1_settings.rb
+2
-2
db/schema.rb
db/schema.rb
+2
-1
No files found.
config/initializers/1_settings.rb
View file @
55e5912e
...
...
@@ -371,8 +371,8 @@ Settings.cron_jobs['gitlab_usage_ping_worker']['cron'] ||= Settings.__send__(:cr
Settings
.
cron_jobs
[
'gitlab_usage_ping_worker'
][
'job_class'
]
=
'GitlabUsagePingWorker'
Settings
.
cron_jobs
[
'pseudonymizer'
]
||=
Settingslogic
.
new
({})
Settings
.
cron_jobs
[
'pseudonymizer'
][
'cron'
]
||=
'0 23 * * *'
;
Settings
.
cron_jobs
[
'pseudonymizer'
][
'job_class'
]
||=
'PseudonymizerWorker'
;
Settings
.
cron_jobs
[
'pseudonymizer'
][
'cron'
]
||=
'0 23 * * *'
Settings
.
cron_jobs
[
'pseudonymizer'
][
'job_class'
]
||=
'PseudonymizerWorker'
Settings
.
cron_jobs
[
'schedule_update_user_activity_worker'
]
||=
Settingslogic
.
new
({})
Settings
.
cron_jobs
[
'schedule_update_user_activity_worker'
][
'cron'
]
||=
'30 0 * * *'
...
...
db/schema.rb
View file @
55e5912e
...
...
@@ -39,13 +39,13 @@ ActiveRecord::Schema.define(version: 20180612175636) do
t
.
integer
"cached_markdown_version"
t
.
text
"new_project_guidelines"
t
.
text
"new_project_guidelines_html"
t
.
string
"favicon"
t
.
text
"header_message"
t
.
text
"header_message_html"
t
.
text
"footer_message"
t
.
text
"footer_message_html"
t
.
text
"message_background_color"
t
.
text
"message_font_color"
t
.
string
"favicon"
end
create_table
"application_setting_terms"
,
force: :cascade
do
|
t
|
...
...
@@ -2694,6 +2694,7 @@ ActiveRecord::Schema.define(version: 20180612175636) do
add_index
"users"
,
[
"reset_password_token"
],
name:
"index_users_on_reset_password_token"
,
unique:
true
,
using: :btree
add_index
"users"
,
[
"rss_token"
],
name:
"index_users_on_rss_token"
,
using: :btree
add_index
"users"
,
[
"state"
],
name:
"index_users_on_state"
,
using: :btree
add_index
"users"
,
[
"state"
],
name:
"index_users_on_state_and_internal_attrs"
,
where:
"((ghost <> true) AND (support_bot <> true))"
,
using: :btree
add_index
"users"
,
[
"support_bot"
],
name:
"index_users_on_support_bot"
,
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"
}
...
...
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