summaryrefslogtreecommitdiff
path: root/db/migrate/20130324151736_add_type_to_snippets.rb
blob: 097cb9bc7cb855f7b0ed1df4a3a7f7352c0eefc2 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddTypeToSnippets < ActiveRecord::Migration
  def change
    add_column :snippets, :type, :string
  end
end