gitlabhq/db/migrate/20121122150932_add_namespace_id_to_project.rb

6 lines
133 B
Ruby
Raw Normal View History

class AddNamespaceIdToProject < ActiveRecord::Migration
def change
rename_column :projects, :group_id, :namespace_id
end
end