Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20130110172407_add_public_to_project.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4362aadcc1da2ef8caa6eec2ba8f322ddfe3dc2a (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddPublicToProject < ActiveRecord::Migration
  def change
    add_column :projects, :public, :boolean, default: false, null: false
  end
end