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: 3138c0f40a79f713340f0926c23245d8ae6bdaaa (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddCreatedByIdToUser < ActiveRecord::Migration
  def change
    add_column :users, :created_by_id, :integer
  end
end