Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20130102143055_rename_owner_to_creator_for_project.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 84fd2060770c2baf4d01cc4d1b02a8f66b5800fc (plain)
1
2
3
4
5
6
# rubocop:disable all
class RenameOwnerToCreatorForProject < ActiveRecord::Migration
  def change
    rename_column :projects, :owner_id, :creator_id
  end
end