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: 1ce750f7e830044279d585a49a70ab1a88424a57 (plain)
1
2
3
4
5
6
7
class AddFaviconToAppearances < ActiveRecord::Migration[4.2]
  DOWNTIME = false

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