Files
redux-scraper/db/migrate/20230520001257_create_pghero_space_stats.rb
2025-01-01 03:29:53 +00:00

15 lines
340 B
Ruby

# typed: true
class CreatePgheroSpaceStats < ActiveRecord::Migration[7.0]
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, %i[database captured_at]
end
end