diff options
author | Alexis Reigel <mail@koffeinfrei.org> | 2017-09-26 09:54:32 +0200 |
---|---|---|
committer | Alexis Reigel <mail@koffeinfrei.org> | 2018-06-05 16:20:18 +0200 |
commit | ce6172e863f982c73fedc9f4a73877543c30cb1c (patch) | |
tree | c35bc83d94504d1aa55086d62ff2234d12fe62d4 /db | |
parent | c8a4d202c99c772822a2b9b09fa6da2c90b2ae81 (diff) | |
download | gitlab-ce-ce6172e863f982c73fedc9f4a73877543c30cb1c.tar.gz |
allow uploading favicon in appearance settings
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20170925184228_add_favicon_to_appearances.rb | 7 | ||||
-rw-r--r-- | db/schema.rb | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/db/migrate/20170925184228_add_favicon_to_appearances.rb b/db/migrate/20170925184228_add_favicon_to_appearances.rb new file mode 100644 index 00000000000..65083733afb --- /dev/null +++ b/db/migrate/20170925184228_add_favicon_to_appearances.rb @@ -0,0 +1,7 @@ +class AddFaviconToAppearances < ActiveRecord::Migration + DOWNTIME = false + + def change + add_column :appearances, :favicon, :string + end +end diff --git a/db/schema.rb b/db/schema.rb index a6b0706b02a..89c8acba3e6 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -38,6 +38,7 @@ ActiveRecord::Schema.define(version: 20180529152628) do t.integer "cached_markdown_version" t.text "new_project_guidelines" t.text "new_project_guidelines_html" + t.string "favicon" end create_table "application_setting_terms", force: :cascade do |t| |