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

20130324151736_add_type_to_snippets.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 276aab2ca1578e77c1c73e50e685c40f427de2ec (plain)
1
2
3
4
5
class AddTypeToSnippets < ActiveRecord::Migration
  def change
    add_column :snippets, :type, :string
  end
end