summaryrefslogtreecommitdiff
path: root/db/migrate/20111016195506_add_file_name_to_snippets.rb
blob: d378d225ec1b580b2a0fe964d8a704642a8f1d17 (plain)
1
2
3
4
5
6
class AddFileNameToSnippets < ActiveRecord::Migration
  def change
    add_column :snippets, :file_name, :string
    remove_column :snippets, :content_type
  end
end