summaryrefslogtreecommitdiff
path: root/db/migrate/20200803125340_create_raw_usage_data.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20200803125340_create_raw_usage_data.rb')
-rw-r--r--db/migrate/20200803125340_create_raw_usage_data.rb24
1 files changed, 24 insertions, 0 deletions
diff --git a/db/migrate/20200803125340_create_raw_usage_data.rb b/db/migrate/20200803125340_create_raw_usage_data.rb
new file mode 100644
index 00000000000..f1c23a7b0f5
--- /dev/null
+++ b/db/migrate/20200803125340_create_raw_usage_data.rb
@@ -0,0 +1,24 @@
+# frozen_string_literal: true
+
+class CreateRawUsageData < ActiveRecord::Migration[6.0]
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = false
+
+ def up
+ unless table_exists?(:raw_usage_data)
+ create_table :raw_usage_data do |t|
+ t.timestamps_with_timezone
+ t.datetime_with_timezone :recorded_at, null: false
+ t.datetime_with_timezone :sent_at
+ t.jsonb :payload, null: false
+
+ t.index [:recorded_at], unique: true
+ end
+ end
+ end
+
+ def down
+ drop_table :raw_usage_data
+ end
+end