Index: trunk/grails-app/conf/BootStrap.groovy
===================================================================
--- trunk/grails-app/conf/BootStrap.groovy	(revision 134)
+++ trunk/grails-app/conf/BootStrap.groovy	(revision 136)
@@ -32,4 +32,5 @@
     {
         println "BootStrapping demo data..."
+        3.times{println it}
 
 /***********************
@@ -415,6 +416,10 @@
         taskRecurringScheduleInstance = new TaskRecurringSchedule(task: Task.get(1),
                                                                                                     recurEvery: 1,
-                                                                                                    period: Period.get(1),
-                                                                                                    nextDueDate: new Date())
+                                                                                                    recurPeriod: Period.get(1),
+                                                                                                    startDate: new Date(),
+                                                                                                    generateAhead: 1,
+                                                                                                    generateAheadPeriod: Period.get(1),
+                                                                                                    taskDuration: 1,
+                                                                                                    taskDurationPeriod: Period.get(1))
         BootStrapSaveAndTest(taskRecurringScheduleInstance)
 
@@ -422,6 +427,10 @@
         taskRecurringScheduleInstance = new TaskRecurringSchedule(task: Task.get(2),
                                                                                                     recurEvery: 1,
-                                                                                                    period: Period.get(1),
-                                                                                                    nextDueDate: new Date())
+                                                                                                    recurPeriod: Period.get(1),
+                                                                                                    startDate: new Date(),
+                                                                                                    generateAhead: 1,
+                                                                                                    generateAheadPeriod: Period.get(1),
+                                                                                                    taskDuration: 1,
+                                                                                                    taskDurationPeriod: Period.get(1))
         BootStrapSaveAndTest(taskRecurringScheduleInstance)
 
