Signed-off-by: Rogan Hamby <rogan.hamby@gmail.com>
Signed-off-by: Jessica Woolford <jwoolford@biblio.org>
Signed-off-by: Chris Sharp <csharp@georgialibraries.org>
owner INT NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
create_time TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW(),
name TEXT NOT NULL,
- description TEXT NOT NULL,
+ description TEXT NOT NULL DEFAULT '',
data TEXT NOT NULL,
folder INT NOT NULL REFERENCES reporter.template_folder (id) DEFERRABLE INITIALLY DEFERRED
);
--- /dev/null
+ALTER TABLE reporter.template ALTER COLUMN description SET DEFAULT '';
+
[% l('Template Description') %]
</div>
<div class="col-md-10">
- <div><textarea class="form-control" ng-model="templateDescription" required/></div>
+ <div><textarea class="form-control" ng-model="templateDescription" /></div>
</div>
</div>