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

20111009101738_add_ownerto_project.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8d265533add849bd479a0f044da7e7e2d6310171 (plain)
1
2
3
4
5
class AddOwnertoProject < ActiveRecord::Migration
  def change
    add_column :projects, :owner_id, :integer
  end
end