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
f63170de
Commit
f63170de
authored
Jul 05, 2019
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of gitlab-org/gitlab-ce master
parents
a0855461
c9748d66
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
58 additions
and
1 deletion
+58
-1
db/migrate/20190621022810_add_last_ci_minutes_usage_notification_level_to_namespaces.rb
...last_ci_minutes_usage_notification_level_to_namespaces.rb
+9
-0
db/migrate/20190703130053_remove_gitaly_feature_flags.rb
db/migrate/20190703130053_remove_gitaly_feature_flags.rb
+48
-0
db/schema.rb
db/schema.rb
+1
-1
No files found.
db/migrate/20190621022810_add_last_ci_minutes_usage_notification_level_to_namespaces.rb
0 → 100644
View file @
f63170de
# frozen_string_literal: true
class
AddLastCiMinutesUsageNotificationLevelToNamespaces
<
ActiveRecord
::
Migration
[
5.1
]
DOWNTIME
=
false
def
change
add_column
:namespaces
,
:last_ci_minutes_usage_notification_level
,
:integer
end
end
db/migrate/20190703130053_remove_gitaly_feature_flags.rb
0 → 100644
View file @
f63170de
# frozen_string_literal: true
class
RemoveGitalyFeatureFlags
<
ActiveRecord
::
Migration
[
5.1
]
include
Gitlab
::
Database
::
MigrationHelpers
DOWNTIME
=
false
FEATURES
=
%w[
gitaly_batch_lfs_pointers gitaly_blame gitaly_blob_get_all_lfs_pointers gitaly_blob_get_new_lfs_pointers
gitaly_branch_names gitaly_branch_names_contains_sha gitaly_branches gitaly_bundle_to_disk
gitaly_calculate_checksum gitaly_can_be_merged gitaly_cherry_pick gitaly_commit_count
gitaly_commit_deltas gitaly_commit_languages gitaly_commit_messages gitaly_commit_patch
gitaly_commit_raw_diffs gitaly_commit_stats gitaly_commit_tree_entry gitaly_commits_between
gitaly_commits_by_message gitaly_conflicts_list_conflict_files gitaly_conflicts_resolve_conflicts gitaly_count_commits
gitaly_count_diverging_commits_no_max gitaly_create_branch gitaly_create_repo_from_bundle gitaly_create_repository
gitaly_delete_branch gitaly_delete_refs gitaly_delta_islands gitaly_deny_disk_acces
gitaly_diff_between gitaly_extract_commit_signature gitaly_fetch_ref gitaly_fetch_remote
gitaly_fetch_source_branch gitaly_filter_shas_with_signature gitaly_filter_shas_with_signatures gitaly_find_all_commits
gitaly_find_branch gitaly_find_commit gitaly_find_commits gitaly_find_ref_name
gitaly_force_push gitaly_fork_repository gitaly_garbage_collect gitaly_get_info_attributes
gitaly_git_blob_load_all_data gitaly_git_blob_raw gitaly_git_fsck gitaly_go-find-all-tags
gitaly_has_local_branches gitaly_import_repository gitaly_is_ancestor gitaly_last_commit_for_path
gitaly_license_short_name gitaly_list_blobs_by_sha_path gitaly_list_commits_by_oid gitaly_local_branches
gitaly_ls_files gitaly_merge_base gitaly_merged_branch_names gitaly_new_commits
gitaly_operation_user_add_tag gitaly_operation_user_commit_file gitaly_operation_user_commit_files gitaly_operation_user_create_branch
gitaly_operation_user_delete_branch gitaly_operation_user_delete_tag gitaly_operation_user_ff_branch gitaly_operation_user_merge_branch
gitaly_post_receive_pack gitaly_post_upload_pack gitaly_project_raw_show gitaly_raw_changes_between
gitaly_rebase gitaly_rebase_in_progress gitaly_ref_delete_refs gitaly_ref_exists
gitaly_ref_exists_branch gitaly_ref_exists_branches gitaly_ref_find_all_remote_branches gitaly_remote_add_remote
gitaly_remote_fetch_internal_remote gitaly_remote_remove_remote gitaly_remote_update_remote_mirror gitaly_remove_namespace
gitaly_repack_full gitaly_repack_incremental gitaly_repository_cleanup gitaly_repository_exists
gitaly_repository_size gitaly_root_ref gitaly_search_files_by_content gitaly_search_files_by_name
gitaly_squash gitaly_squash_in_progress gitaly_ssh_receive_pack gitaly_ssh_upload_pack
gitaly_submodule_url_for gitaly_tag_messages gitaly_tag_names gitaly_tag_names_contains_sha
gitaly_tags gitaly_tree_entries gitaly_wiki_delete_page gitaly_wiki_find_file
gitaly_wiki_find_page gitaly_wiki_get_all_pages gitaly_wiki_page_formatted_data gitaly_wiki_page_versions
gitaly_wiki_update_page gitaly_wiki_write_page gitaly_workhorse_archive gitaly_workhorse_raw_show
gitaly_workhorse_send_git_diff gitaly_workhorse_send_git_patch gitaly_write_config gitaly_write_ref
]
class
Feature
<
ActiveRecord
::
Base
self
.
table_name
=
'features'
end
def
up
Feature
.
where
(
key:
FEATURES
).
delete_all
end
end
db/schema.rb
View file @
f63170de
...
...
@@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord
::
Schema
.
define
(
version:
20190
628185004
)
do
ActiveRecord
::
Schema
.
define
(
version:
20190
703130053
)
do
# These are extensions that must be enabled in order to support this database
enable_extension
"plpgsql"
...
...
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