Ignore:
Timestamp:
Mar 29, 2009, 11:56:11 PM (15 years ago)
Author:
gav
Message:

Rename Modification and ModificationType? domains to TaskModification? and TaskModificationType? respectively. Re-generate controller and views. Update ERD. It's an evil but a necessary mouthful as we may want to track other modifications later.

File:
1 moved

Legend:

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

    r92 r93  
    1 class Modification {
     1class TaskModification {
    22    Person person
    3     ModificationType modificationType
     3    TaskModificationType taskModificationType
    44    Task task
    55    Date date = new Date()
    66    String comment
    77
    8     static belongsTo = [Person, ModificationType, Task]
     8    static belongsTo = [Person, TaskModificationType, Task]
    99
    1010    static constraints = {
    1111        person()
    12         modificationType()
     12        taskModificationType()
    1313        task()
    1414        date()
Note: See TracChangeset for help on using the changeset viewer.