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

20130129121754_add_public_flag_to_project.rb « migrate « ci « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2bfe52f0df48ede4d46aef5544fc0da3d2bfb5a7 (plain)
1
2
3
4
5
class AddPublicFlagToProject < ActiveRecord::Migration
  def change
    add_column :projects, :public, :boolean, null: false, default: false
  end
end