26 lines
508 B
Ruby
26 lines
508 B
Ruby
# == Schema Information
|
|
#
|
|
# Table name: user_trace_tasks
|
|
#
|
|
# id :integer not null, primary key
|
|
# user_id :integer
|
|
# project_id :integer
|
|
# branch_tag :string(255)
|
|
# task_id :string(255)
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_user_trace_tasks_on_project_id (project_id)
|
|
# index_user_trace_tasks_on_user_id (user_id)
|
|
#
|
|
|
|
class UserTraceTask < ApplicationRecord
|
|
|
|
belongs_to :user
|
|
belongs_to :project
|
|
|
|
|
|
end
|