diff options
author | Micaël Bergeron <mbergeron@gitlab.com> | 2018-03-02 13:21:03 -0500 |
---|---|---|
committer | Micaël Bergeron <mbergeron@gitlab.com> | 2018-03-02 13:21:03 -0500 |
commit | 4484587ef8c9bf63c60359a0980dda95e854b744 (patch) | |
tree | a917f3d9336e389e485fdab72cc5a8a5ad5fd3af /db | |
parent | 0d458b96e8349a50877ebd55932bf806e93caa21 (diff) | |
download | gitlab-ce-4484587ef8c9bf63c60359a0980dda95e854b744.tar.gz |
another round of EE code removal
Diffstat (limited to 'db')
-rw-r--r-- | db/schema.rb | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/db/schema.rb b/db/schema.rb index 5ce6a015e83..db6360089a8 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -290,12 +290,10 @@ ActiveRecord::Schema.define(version: 20180216121030) do t.integer "auto_canceled_by_id" t.boolean "retried" t.integer "stage_id" - t.integer "artifacts_file_store", default: 1, null: false - t.integer "artifacts_metadata_store", default: 1, null: false - t.boolean "protected" - t.integer "failure_reason" t.integer "artifacts_file_store" t.integer "artifacts_metadata_store" + t.boolean "protected" + t.integer "failure_reason" end add_index "ci_builds", ["artifacts_expire_at"], name: "index_ci_builds_on_artifacts_expire_at", where: "(artifacts_file <> ''::text)", using: :btree @@ -338,7 +336,6 @@ ActiveRecord::Schema.define(version: 20180216121030) do t.datetime_with_timezone "updated_at", null: false t.datetime_with_timezone "expire_at" t.string "file" - t.integer "file_store" end add_index "ci_job_artifacts", ["expire_at", "job_id"], name: "index_ci_job_artifacts_on_expire_at_and_job_id", using: :btree |