2018-11-20 20:47:30 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-02-15 15:39:39 +05:30
|
|
|
class CreatePrometheusMetrics < ActiveRecord::Migration[4.2]
|
2018-11-20 20:47:30 +05:30
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
def change
|
2019-12-04 20:38:33 +05:30
|
|
|
# rubocop:disable Migration/AddLimitToStringColumns
|
2018-11-20 20:47:30 +05:30
|
|
|
create_table :prometheus_metrics do |t|
|
|
|
|
t.references :project, index: true, foreign_key: { on_delete: :cascade }, null: false
|
|
|
|
t.string :title, null: false
|
|
|
|
t.string :query, null: false
|
|
|
|
t.string :y_label
|
|
|
|
t.string :unit
|
|
|
|
t.string :legend
|
|
|
|
t.integer :group, null: false, index: true
|
|
|
|
t.timestamps_with_timezone null: false
|
|
|
|
end
|
2019-12-04 20:38:33 +05:30
|
|
|
# rubocop:enable Migration/AddLimitToStringColumns
|
2018-11-20 20:47:30 +05:30
|
|
|
end
|
|
|
|
end
|