mirror of https://github.com/tootsuite/mastodon
16 lines
408 B
Ruby
16 lines
408 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreatePgheroSpaceStats < ActiveRecord::Migration[5.2]
|
|
def change
|
|
create_table :pghero_space_stats do |t| # rubocop:disable Rails/CreateTableWithTimestamps
|
|
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
|