summaryrefslogtreecommitdiff
path: root/application.rb
diff options
context:
space:
mode:
authorChristoph Helma <ch@in-silico.ch>2010-02-10 16:07:04 +0100
committerChristoph Helma <ch@in-silico.ch>2010-02-10 16:07:04 +0100
commita787ecc2bff70ee705f09d3ba9b38b24394f5075 (patch)
tree0fbaa33838684467b2d21c3e03ee974c8510418d /application.rb
parenteab2022b39a07f0b8dcd8c15675d122fb6cea1ac (diff)
LONGTEXT for mysql columns
Diffstat (limited to 'application.rb')
-rw-r--r--application.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/application.rb b/application.rb
index 6f4dd29..d3787a9 100644
--- a/application.rb
+++ b/application.rb
@@ -7,8 +7,8 @@ class Model
property :id, Serial
property :uri, String, :length => 100
#property :task_uri, String, :length => 100
- property :owl, Text
- property :yaml, Text
+ property :owl, Text, :length => 2**32-1
+ property :yaml, Text, :length => 2**32-1
property :created_at, DateTime
end