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
path: root/db
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2018-05-31 18:04:16 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2018-05-31 18:04:16 +0300
commitd52494ef66a76aab78c1735d3b188233a7d4b11c (patch)
tree4590d57e5c59b737504edfd2e1bb271071cfb2b0 /db
parentee5179cbd6a4631f06ed17e6e001c730ab335622 (diff)
Fix column order for jupyter table in schema.rb
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'db')
-rw-r--r--db/schema.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 05f8fc94c64..5d528217176 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -641,9 +641,9 @@ ActiveRecord::Schema.define(version: 20180529093006) do
t.integer "status", null: false
t.string "version", null: false
t.string "hostname"
- t.text "status_reason"
t.datetime_with_timezone "created_at", null: false
t.datetime_with_timezone "updated_at", null: false
+ t.text "status_reason"
end
create_table "clusters_applications_prometheus", force: :cascade do |t|