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: d0fca269871dcfb475905d12fadaafca359e3614 (plain)
1
2
3
4
5
class RenameOwnerToCreatorForProject < ActiveRecord::Migration
  def change
    rename_column :projects, :owner_id, :creator_id
  end
end