diff options
author | Shinya Maeda <shinya@gitlab.com> | 2018-07-04 10:47:18 +0900 |
---|---|---|
committer | Shinya Maeda <shinya@gitlab.com> | 2018-07-04 10:47:18 +0900 |
commit | dd73f75ad5ad353d642333bb89e59efc011caeea (patch) | |
tree | de60329e7e5b5d1bdf57651b848a7e293824baf2 /db | |
parent | e90e171997e144d2a34c2066ecf5a450d1736f06 (diff) | |
download | gitlab-ce-extend-junit-keyword-ce.tar.gz |
Revert persisting file_format in databaseextend-junit-keyword-ce
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20180701230554_add_file_format_to_ci_job_artifacts.rb | 9 | ||||
-rw-r--r-- | db/schema.rb | 1 |
2 files changed, 0 insertions, 10 deletions
diff --git a/db/migrate/20180701230554_add_file_format_to_ci_job_artifacts.rb b/db/migrate/20180701230554_add_file_format_to_ci_job_artifacts.rb deleted file mode 100644 index 69b8c0e596a..00000000000 --- a/db/migrate/20180701230554_add_file_format_to_ci_job_artifacts.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddFileFormatToCiJobArtifacts < ActiveRecord::Migration - include Gitlab::Database::MigrationHelpers - - DOWNTIME = false - - def change - add_column :ci_job_artifacts, :file_format, :integer, limit: 2 - end -end diff --git a/db/schema.rb b/db/schema.rb index c72c7dedce1..5d917abdbb5 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -383,7 +383,6 @@ ActiveRecord::Schema.define(version: 20180629191052) do t.datetime_with_timezone "expire_at" t.string "file" t.binary "file_sha256" - t.integer "file_format", limit: 2 end add_index "ci_job_artifacts", ["expire_at", "job_id"], name: "index_ci_job_artifacts_on_expire_at_and_job_id", using: :btree |