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

20130613173246_add_created_by_id_to_user.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 615e96eb156d8f58d20eb20d61b85b670325fa98 (plain)
1
2
3
4
5
class AddCreatedByIdToUser < ActiveRecord::Migration
  def change
    add_column :users, :created_by_id, :integer
  end
end