summaryrefslogtreecommitdiff
path: root/db/migrate/20211004062942_create_coverage_fuzzing_corpuses.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20211004062942_create_coverage_fuzzing_corpuses.rb')
-rw-r--r--db/migrate/20211004062942_create_coverage_fuzzing_corpuses.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/db/migrate/20211004062942_create_coverage_fuzzing_corpuses.rb b/db/migrate/20211004062942_create_coverage_fuzzing_corpuses.rb
new file mode 100644
index 00000000000..c24883b626d
--- /dev/null
+++ b/db/migrate/20211004062942_create_coverage_fuzzing_corpuses.rb
@@ -0,0 +1,18 @@
+# frozen_string_literal: true
+
+class CreateCoverageFuzzingCorpuses < Gitlab::Database::Migration[1.0]
+ def change
+ create_table :coverage_fuzzing_corpuses do |t|
+ t.bigint :project_id, null: false
+ t.bigint :user_id
+ t.bigint :package_id, null: false
+
+ t.datetime_with_timezone :file_updated_at, null: false, default: -> { 'NOW()' }
+ t.timestamps_with_timezone null: false
+
+ t.index :project_id
+ t.index :user_id
+ t.index :package_id
+ end
+ end
+end