The code powering m.abunchtell.com https://m.abunchtell.com
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

14 行
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