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

20170925184228_add_favicon_to_appearances.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 65083733afbf0de984da7c4289857dd5dcdb74a2 (plain)
1
2
3
4
5
6
7
class AddFaviconToAppearances < ActiveRecord::Migration
  DOWNTIME = false

  def change
    add_column :appearances, :favicon, :string
  end
end