The code powering m.abunchtell.com https://m.abunchtell.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

14 lines
327 B

  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