Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Brandl <abrandl@gitlab.com>2019-09-03 12:37:12 +0300
committerAndreas Brandl <abrandl@gitlab.com>2019-09-03 12:37:12 +0300
commitde4e2dcafceee485cba9ef6993062b00a4929d2f (patch)
tree0b8ab300ce942344f4f7360493fbada1d67f7ad0 /db/schema.rb
parenta8c451632194121111139a79e8489d1806c69b1b (diff)
parentab60775216e6d23ec7ee8a580793b5b3fa92f6f9 (diff)
Merge branch 'db/prometheus-metrics-not-null-constraints' into 'master'
Add not null constraints to prometheus_metrics table columns Closes #66663 See merge request gitlab-org/gitlab-ce!32339
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 5b89cdf0b98..3980627045e 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -2869,8 +2869,8 @@ ActiveRecord::Schema.define(version: 2019_09_02_131045) do
t.integer "project_id"
t.string "title", null: false
t.string "query", null: false
- t.string "y_label"
- t.string "unit"
+ t.string "y_label", null: false
+ t.string "unit", null: false
t.string "legend"
t.integer "group", null: false
t.datetime_with_timezone "created_at", null: false