summaryrefslogtreecommitdiff
path: root/db/migrate/20111016193417_add_content_type_to_snippets.rb
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