gitlabhq/db/migrate/20130131070232_remove_private_flag_from_project.rb
2013-01-31 09:11:35 +02:00

10 lines
219 B
Ruby

class RemovePrivateFlagFromProject < ActiveRecord::Migration
def up
remove_column :projects, :private_flag
end
def down
add_column :projects, :private_flag, :boolean, default: true, null: false
end
end