diff options
| author | Robert Speicher <rspeicher@gmail.com> | 2017-07-07 16:45:53 -0400 |
|---|---|---|
| committer | Robert Speicher <rspeicher@gmail.com> | 2017-07-07 16:45:53 -0400 |
| commit | 75f3f6e1d6a826b28363fba518f7d3cf016c2df6 (patch) | |
| tree | e06f8564bbc63e0a21c16849cacd4ea24ad5f848 /db | |
| parent | 7d03012f2a950804568f744b433f04ff4a7f1186 (diff) | |
| parent | 69e17c225e53feaa7449e468e89aca3f084ab9f9 (diff) | |
| download | gitlab-ce-75f3f6e1d6a826b28363fba518f7d3cf016c2df6.tar.gz | |
Merge branch 'master' into rs-sign_in
Diffstat (limited to 'db')
| -rw-r--r-- | db/migrate/20170706151212_add_performance_bar_allowed_group_id_to_application_settings.rb | 9 | ||||
| -rw-r--r-- | db/schema.rb | 1 |
2 files changed, 10 insertions, 0 deletions
diff --git a/db/migrate/20170706151212_add_performance_bar_allowed_group_id_to_application_settings.rb b/db/migrate/20170706151212_add_performance_bar_allowed_group_id_to_application_settings.rb new file mode 100644 index 00000000000..fe9970ddc71 --- /dev/null +++ b/db/migrate/20170706151212_add_performance_bar_allowed_group_id_to_application_settings.rb @@ -0,0 +1,9 @@ +class AddPerformanceBarAllowedGroupIdToApplicationSettings < ActiveRecord::Migration + include Gitlab::Database::MigrationHelpers + + DOWNTIME = false + + def change + add_column :application_settings, :performance_bar_allowed_group_id, :integer + end +end diff --git a/db/schema.rb b/db/schema.rb index 386f3041135..023783c2b3b 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -126,6 +126,7 @@ ActiveRecord::Schema.define(version: 20170724184243) do t.boolean "prometheus_metrics_enabled", default: false, null: false t.boolean "help_page_hide_commercial_content", default: false t.string "help_page_support_url" + t.integer "performance_bar_allowed_group_id" end create_table "audit_events", force: :cascade do |t| |
