2023-07-12 16:47:08 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-10-10 02:35:14 +09:00
|
|
|
class CreatePgheroSpaceStats < ActiveRecord::Migration[5.2]
|
|
|
|
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, [:database, :captured_at]
|
|
|
|
end
|
|
|
|
end
|