BigW Consortium Gitlab

20130323174317_add_private_to_snippets.rb 171 Bytes
Newer Older
1
# rubocop:disable all
2 3
class AddPrivateToSnippets < ActiveRecord::Migration
  def change
4
    add_column :snippets, :private, :boolean, null: false, default: true
5 6
  end
end