20181007025445_create_pghero_space_stats.rb 327 B

12345678910111213
  1. class CreatePgheroSpaceStats < ActiveRecord::Migration[5.2]
  2. def change
  3. create_table :pghero_space_stats do |t|
  4. t.text :database
  5. t.text :schema
  6. t.text :relation
  7. t.integer :size, limit: 8
  8. t.timestamp :captured_at
  9. end
  10. add_index :pghero_space_stats, [:database, :captured_at]
  11. end
  12. end