summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Helma <helma@in-silico.de>2010-02-16 16:20:09 +0100
committerChristoph Helma <helma@in-silico.de>2010-02-16 16:20:09 +0100
commitcc8861c7de416248010cbc11cef3a67579fb60b2 (patch)
treec6cc28621a1f26912d994d02f52a9b4f78a53e73
parent727a3ff2809afcfbdc22439866a7714190e753de (diff)
length for uri and file entries extended to 255 characters
-rw-r--r--application.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/application.rb b/application.rb
index 017ed7c..1b1a255 100644
--- a/application.rb
+++ b/application.rb
@@ -8,8 +8,8 @@ class Task
property :id, Serial
property :parent_id, Integer
property :pid, Integer
- property :uri, String, :length => 100
- property :resource, String, :length => 100
+ property :uri, String, :length => 255
+ property :resource, String, :length => 255
property :status, String, :default => "created"
property :created_at, DateTime
property :finished_at, DateTime