Merge pull request #3512 from consul/backport-stats

Change stats layout
This commit is contained in:
Javier Martín
2019-05-21 17:18:47 +02:00
committed by GitHub
61 changed files with 2004 additions and 925 deletions

View File

@@ -1334,6 +1334,14 @@ ActiveRecord::Schema.define(version: 20190411090023) do
t.index ["tsv"], name: "index_spending_proposals_on_tsv", using: :gin
end
create_table "stats_versions", force: :cascade do |t|
t.string "process_type"
t.integer "process_id"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["process_type", "process_id"], name: "index_stats_versions_on_process_type_and_process_id", using: :btree
end
create_table "taggings", force: :cascade do |t|
t.integer "tag_id"
t.integer "taggable_id"