BigW Consortium Gitlab

20130323174317_add_private_to_snippets.rb 171 Bytes
# rubocop:disable all
class AddPrivateToSnippets < ActiveRecord::Migration
  def change
    add_column :snippets, :private, :boolean, null: false, default: true
  end
end