mirror of
https://github.com/SrIzan10/hc-harbor.git
synced 2026-05-01 10:45:21 +00:00
11 lines
246 B
Ruby
11 lines
246 B
Ruby
class CreateRawHeartbeatUploads < ActiveRecord::Migration[8.0]
|
|
def change
|
|
create_table :raw_heartbeat_uploads do |t|
|
|
t.jsonb :request_headers, null: false
|
|
t.jsonb :request_body, null: false
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|