mirror of
https://github.com/internetee/registry.git
synced 2025-06-11 23:24:48 +02:00
17 lines
476 B
Ruby
17 lines
476 B
Ruby
class CreatePgheroQueryStats < ActiveRecord::Migration[6.1]
|
|
def change
|
|
unless Rails.env.production?
|
|
create_table :pghero_query_stats do |t|
|
|
t.text :database
|
|
t.text :user
|
|
t.text :query
|
|
t.integer :query_hash, limit: 8
|
|
t.float :total_time
|
|
t.integer :calls, limit: 8
|
|
t.timestamp :captured_at
|
|
end
|
|
|
|
add_index :pghero_query_stats, [:database, :captured_at]
|
|
end
|
|
end
|
|
end
|