debian-mirror-gitlab/db/migrate/20130102143055_rename_owner_to_creator_for_project.rb
2016-06-16 23:09:34 +05:30

7 lines
160 B
Ruby

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