summaryrefslogtreecommitdiff
path: root/db/migrate/20130323174317_add_private_to_snippets.rb
blob: 376f4618d414aa61104a1c84762b47a7802c855b (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddPrivateToSnippets < ActiveRecord::Migration
  def change
    add_column :snippets, :private, :boolean, null: false, default: true
  end
end