BigW Consortium Gitlab

20130110172407_add_public_to_project.rb 169 Bytes
Newer Older
1
# rubocop:disable all
2 3 4 5 6
class AddPublicToProject < ActiveRecord::Migration
  def change
    add_column :projects, :public, :boolean, default: false, null: false
  end
end