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

20121002151033_add_group_id_to_project.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 683fbfec5137edf7ff84e38c0b0aee315d19dcb7 (plain)
1
2
3
4
5
class AddGroupIdToProject < ActiveRecord::Migration
  def change
    add_column :projects, :group_id, :integer
  end
end