diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2023-01-04 21:07:26 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2023-01-04 21:07:26 +0000 |
commit | 2242221252d13fdf322b5e59f971a689831c541b (patch) | |
tree | 23e30706b58811d2dd2522853cb3bbc27bab028d /db/migrate | |
parent | 9c66c38ab6ce56cfe06eca21f717977f1684f08c (diff) | |
download | gitlab-ce-2242221252d13fdf322b5e59f971a689831c541b.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'db/migrate')
-rw-r--r-- | db/migrate/20221219135535_add_user_defaults_to_private_profile_to_application_settings.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/db/migrate/20221219135535_add_user_defaults_to_private_profile_to_application_settings.rb b/db/migrate/20221219135535_add_user_defaults_to_private_profile_to_application_settings.rb new file mode 100644 index 00000000000..2770456c46f --- /dev/null +++ b/db/migrate/20221219135535_add_user_defaults_to_private_profile_to_application_settings.rb @@ -0,0 +1,7 @@ +# frozen_string_literal: true + +class AddUserDefaultsToPrivateProfileToApplicationSettings < Gitlab::Database::Migration[2.1] + def change + add_column(:application_settings, :user_defaults_to_private_profile, :boolean, default: false, null: false) + end +end |