--- trunk/lib/SQLSession/Model/Query.pm 2006/12/03 19:47:39 21 +++ trunk/lib/SQLSession/Model/Query.pm 2006/12/07 23:22:41 31 @@ -25,9 +25,24 @@ refers_to SQLSession::Model::Database by 'id', label is 'on database', mandatory; + + column note => + type is 'text', + label is 'Note', + render as 'textarea', + since 0.0.2; + + column visible => + type is 'boolean', + default is 1, + since 0.0.3; }; # Your model-specific methods go here. +sub current_user_can { + return 1; +} + 1;