diff options
author | Yorick Peterse <yorickpeterse@gmail.com> | 2017-08-24 18:32:49 +0200 |
---|---|---|
committer | Yorick Peterse <yorickpeterse@gmail.com> | 2017-08-24 18:33:32 +0200 |
commit | 5af797d4a935faf0c772b9ce5c8c24b736beedd7 (patch) | |
tree | ab7d3c1c456ecb97613c65d8520cc68c47885713 /db/schema.rb | |
parent | 610155e063251036f35aadd4dc0f707d1738e54b (diff) | |
download | gitlab-ce-5af797d4a935faf0c772b9ce5c8c24b736beedd7.tar.gz |
Re-allow appearances.description_html to be NULLrevert-appearances-description-html-not-null
This column isn't always set (e.g. when upgrading from older instances)
and technically it could be NULL (e.g. when flushing the cache).
Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/36919
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/db/schema.rb b/db/schema.rb index cd488630237..0f4b0c0c3b3 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -11,7 +11,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20170820100558) do +ActiveRecord::Schema.define(version: 20170824162758) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -34,7 +34,7 @@ ActiveRecord::Schema.define(version: 20170820100558) do t.string "logo" t.datetime "created_at", null: false t.datetime "updated_at", null: false - t.text "description_html", null: false + t.text "description_html" t.integer "cached_markdown_version" end |