hackatime/db/migrate/20260202210555_create_pghero_space_stats.rb
2026-02-02 20:38:52 -05:00

13 lines
329 B
Ruby

class CreatePgheroSpaceStats < ActiveRecord::Migration[8.1]
def change
create_table :pghero_space_stats do |t|
t.text :database
t.text :schema
t.text :relation
t.integer :size, limit: 8
t.timestamp :captured_at
end
add_index :pghero_space_stats, [ :database, :captured_at ]
end
end