gitlab-org--gitlab-foss/db/migrate/20170925184228_add_favicon_to_appearances.rb
2018-06-05 16:20:18 +02:00

7 lines
146 B
Ruby

class AddFaviconToAppearances < ActiveRecord::Migration
DOWNTIME = false
def change
add_column :appearances, :favicon, :string
end
end