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

20110915205627_add_private_flag_to_project.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 73c0b9df8348de4eb53c81aba2509acb88d6b478 (plain)
1
2
3
4
5
class AddPrivateFlagToProject < ActiveRecord::Migration
  def change
    add_column :projects, :private_flag, :boolean, :default => true, :null => false
  end
end