gitlabhq/db/migrate/20130131070232_remove_private_flag_from_project.rb

10 lines
219 B
Ruby
Raw Normal View History

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