Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20210623133635_create_error_tracking_errors.rb')
-rw-r--r--db/migrate/20210623133635_create_error_tracking_errors.rb28
1 files changed, 28 insertions, 0 deletions
diff --git a/db/migrate/20210623133635_create_error_tracking_errors.rb b/db/migrate/20210623133635_create_error_tracking_errors.rb
new file mode 100644
index 00000000000..e26fbe8df86
--- /dev/null
+++ b/db/migrate/20210623133635_create_error_tracking_errors.rb
@@ -0,0 +1,28 @@
+# frozen_string_literal: true
+
+class CreateErrorTrackingErrors < ActiveRecord::Migration[6.1]
+ include Gitlab::Database::MigrationHelpers
+
+ def up
+ create_table_with_constraints :error_tracking_errors do |t|
+ t.references :project, index: true, null: false, foreign_key: { on_delete: :cascade }
+ t.text :name, null: false
+ t.text :description, null: false
+ t.text :actor, null: false
+ t.datetime_with_timezone :first_seen_at, null: false, default: -> { 'NOW()' }
+ t.datetime_with_timezone :last_seen_at, null: false, default: -> { 'NOW()' }
+ t.text :platform
+
+ t.text_limit :name, 255
+ t.text_limit :description, 1024
+ t.text_limit :actor, 255
+ t.text_limit :platform, 255
+
+ t.timestamps_with_timezone
+ end
+ end
+
+ def down
+ drop_table :error_tracking_errors
+ end
+end