Ignore:
Timestamp:
Nov 25, 2008, 1:22:58 PM (15 years ago)
Author:
tuxta
Message:

Align domain classes to ERD.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/grails-app/domain/Task.groovy

    r16 r18  
    11class Task {
    22    TaskGroup taskGroup
     3    Person person
    34    String name
    45    String description
     6    Date scheduledDate
     7    Date targetDate
    58
    6     static hasMany = [entries : Entry, modifications : Modification]
     9    static hasMany = [entries: Entry, modifications : Modification]
    710
    8     static belongsTo = TaskGroup
     11    static belongsTo = [TaskGroup, Person]
    912
    1013    static constraints = {
Note: See TracChangeset for help on using the changeset viewer.