gitlabhq/db/migrate/20110915205627_add_private_...

6 lines
163 B
Ruby

class AddPrivateFlagToProject < ActiveRecord::Migration
def change
add_column :projects, :private_flag, :boolean, :default => true, :null => false
end
end