gitlab-org--gitlab-foss/db/migrate/20130102143055_rename_owner...

7 lines
160 B
Ruby

# rubocop:disable all
class RenameOwnerToCreatorForProject < ActiveRecord::Migration
def change
rename_column :projects, :owner_id, :creator_id
end
end