Sha256: f56379830dd429abdaa78df92faf17a365558b1d72915c71f52bf9042966f426
Contents?: true
Size: 364 Bytes
Versions: 17
Compression:
Stored size: 364 Bytes
Contents
# encoding: utf-8 class Task < ActiveRecord::Base belongs_to :created_by, class_name: 'User' belongs_to :project belongs_to :priority belongs_to :status belongs_to :relevant_version, class_name: 'Version' belongs_to :expected_version, class_name: 'Version' has_and_belongs_to_many :assigned_users, -> { order('users.name') }, class_name: 'User' end
Version data entries
17 entries across 17 versions & 2 rubygems