20181007025445_create_pghero_space_stats.rb 358 B

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