debian-mirror-gitlab/db/migrate/20130613173246_add_created_by_id_to_user.rb
2016-06-16 23:09:34 +05:30

7 lines
146 B
Ruby

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