gitlab-org--gitlab-foss/db/migrate/20130926081215_change_owner...

11 lines
240 B
Ruby

# rubocop:disable all
class ChangeOwnerIdForGroup < ActiveRecord::Migration
def up
change_column :namespaces, :owner_id, :integer, null: true
end
def down
change_column :namespaces, :owner_id, :integer, null: false
end
end