gitlabhq/db/migrate/20111009111204_remove_allow...

10 lines
234 B
Ruby

class RemoveAllowCreateRepoFromUser < ActiveRecord::Migration
def up
remove_column :users, :allowed_create_repo
end
def down
add_column :users, :allowed_create_repo, :boolean, :default => true, :null => false
end
end