diff options
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20191003015155_add_self_managed_prometheus_alerts.rb | 1 | ||||
-rw-r--r-- | db/post_migrate/20191017180026_drop_ci_build_trace_sections_id.rb | 19 | ||||
-rw-r--r-- | db/schema.rb | 4 |
3 files changed, 21 insertions, 3 deletions
diff --git a/db/migrate/20191003015155_add_self_managed_prometheus_alerts.rb b/db/migrate/20191003015155_add_self_managed_prometheus_alerts.rb index 94d16e921df..71d10153422 100644 --- a/db/migrate/20191003015155_add_self_managed_prometheus_alerts.rb +++ b/db/migrate/20191003015155_add_self_managed_prometheus_alerts.rb @@ -1,7 +1,6 @@ # frozen_string_literal: true class AddSelfManagedPrometheusAlerts < ActiveRecord::Migration[5.2] - # Set this constant to true if this migration requires downtime. DOWNTIME = false def change diff --git a/db/post_migrate/20191017180026_drop_ci_build_trace_sections_id.rb b/db/post_migrate/20191017180026_drop_ci_build_trace_sections_id.rb new file mode 100644 index 00000000000..0405e23b465 --- /dev/null +++ b/db/post_migrate/20191017180026_drop_ci_build_trace_sections_id.rb @@ -0,0 +1,19 @@ +# frozen_string_literal: true + +class DropCiBuildTraceSectionsId < ActiveRecord::Migration[5.2] + DOWNTIME = false + + def up + ## + # This column has already been ignored since 12.4 + # See https://gitlab.com/gitlab-org/gitlab/issues/32569 + remove_column :ci_build_trace_sections, :id + end + + def down + ## + # We don't backfill serial ids as it's not used in application code + # and quite expensive process. + add_column :ci_build_trace_sections, :id, :bigint + end +end diff --git a/db/schema.rb b/db/schema.rb index 31bb3d75ea2..dce9d1dc189 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 2019_10_17_094449) do +ActiveRecord::Schema.define(version: 2019_10_17_180026) do # These are extensions that must be enabled in order to support this database enable_extension "pg_trgm" @@ -599,7 +599,7 @@ ActiveRecord::Schema.define(version: 2019_10_17_094449) do t.index ["project_id", "name"], name: "index_ci_build_trace_section_names_on_project_id_and_name", unique: true end - create_table "ci_build_trace_sections", id: :serial, force: :cascade do |t| + create_table "ci_build_trace_sections", id: false, force: :cascade do |t| t.integer "project_id", null: false t.datetime "date_start", null: false t.datetime "date_end", null: false |