gitlab-org--gitlab-foss/db/migrate/20130613173246_add_created_...

7 lines
146 B
Ruby

# rubocop:disable all
class AddCreatedByIdToUser < ActiveRecord::Migration
def change
add_column :users, :created_by_id, :integer
end
end