debian-mirror-gitlab/db/migrate/20200803125340_create_raw_usage_data.rb
2020-10-24 23:57:45 +05:30

25 lines
543 B
Ruby

# 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