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

20111016193417_add_content_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: 511a6793f4ff978ca874f0ada79a250b8b67212d (plain)
1
2
3
4
5
class AddContentTypeToSnippets < ActiveRecord::Migration
  def change
    add_column :snippets, :content_type, :string, :null => false, :default => "txt"
  end
end