Sha256: 16e7e48891624dffd18a10b554ce058e8f45a26966068bed36c1d91f73b9cd1f
Contents?: true
Size: 292 Bytes
Versions: 17
Compression:
Stored size: 292 Bytes
Contents
# encoding: utf-8 class User < ActiveRecord::Base has_many :created_tasks, class_name: 'Task', foreign_key: :created_by_id has_and_belongs_to_many :assigned_tasks, class_name: 'Task' has_many :user_project_participations has_many :projects, through: :user_project_participations end
Version data entries
17 entries across 17 versions & 2 rubygems