Commit d02c44ee authored by Piotr Skorupa's avatar Piotr Skorupa

Add version_usage_data_id to raw_usage_data migration

parent 2c7cf0c5
# frozen_string_literal: true
class AddVersionUsageDataIdToRawUsageData < ActiveRecord::Migration[6.0]
DOWNTIME = false
def change
add_column :raw_usage_data, :version_usage_data_id, :bigint
end
end
b58f2853d7a2d9a821198f69c5913d290404a4961410dd66d256eefc7ecf1026
\ No newline at end of file
......@@ -16616,7 +16616,8 @@ CREATE TABLE raw_usage_data (
updated_at timestamp with time zone NOT NULL,
recorded_at timestamp with time zone NOT NULL,
sent_at timestamp with time zone,
payload jsonb NOT NULL
payload jsonb NOT NULL,
version_usage_data_id bigint
);
CREATE SEQUENCE raw_usage_data_id_seq
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment