summaryrefslogtreecommitdiff
path: root/db/migrate/20200805150316_create_ci_pipeline_artifact.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20200805150316_create_ci_pipeline_artifact.rb')
-rw-r--r--db/migrate/20200805150316_create_ci_pipeline_artifact.rb32
1 files changed, 32 insertions, 0 deletions
diff --git a/db/migrate/20200805150316_create_ci_pipeline_artifact.rb b/db/migrate/20200805150316_create_ci_pipeline_artifact.rb
new file mode 100644
index 00000000000..01995972011
--- /dev/null
+++ b/db/migrate/20200805150316_create_ci_pipeline_artifact.rb
@@ -0,0 +1,32 @@
+# frozen_string_literal: true
+
+class CreateCiPipelineArtifact < ActiveRecord::Migration[6.0]
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = false
+
+ disable_ddl_transaction!
+
+ def up
+ unless table_exists?(:ci_pipeline_artifacts)
+ create_table :ci_pipeline_artifacts do |t|
+ t.timestamps_with_timezone
+ t.bigint :pipeline_id, null: false, index: true
+ t.bigint :project_id, null: false, index: true
+ t.integer :size, null: false
+ t.integer :file_store, null: false, limit: 2
+ t.integer :file_type, null: false, limit: 2
+ t.integer :file_format, null: false, limit: 2
+ t.text :file
+
+ t.index [:pipeline_id, :file_type], unique: true
+ end
+ end
+
+ add_text_limit :ci_pipeline_artifacts, :file, 255
+ end
+
+ def down
+ drop_table :ci_pipeline_artifacts
+ end
+end