demarches-normaliennes/app/models/merge_log.rb
simon lehericey 7935e42109 Add merge log
2021-10-28 14:39:13 +02:00

14 lines
402 B
Ruby

# == Schema Information
#
# Table name: merge_logs
#
# id :bigint not null, primary key
# from_user_email :string not null
# created_at :datetime not null
# updated_at :datetime not null
# from_user_id :bigint not null
# user_id :bigint not null
#
class MergeLog < ApplicationRecord
belongs_to :user
end