demarches-normaliennes/app/models/merge_log.rb

15 lines
402 B
Ruby
Raw Normal View History

2021-10-26 14:41:30 +02:00
# == 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