summaryrefslogtreecommitdiff
path: root/db/migrate/20130613173246_add_created_by_id_to_user.rb
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