--- trunk/lib/SVNBrowser/Model/Action.pm 2007/03/04 23:05:54 52 +++ trunk/lib/SVNBrowser/Model/Action.pm 2007/03/19 17:25:21 53 @@ -5,29 +5,28 @@ use Jifty::DBI::Schema; -use SVNBrowser::Model::Revision; - use SVNBrowser::Record schema { column revision => type is 'int', is indexed, - mandatory; +# refers_to SVNBrowser::Model::Revision by 'revision', + is mandatory; column type => type is 'char', valid are qw( A M D ), - mandatory; + is mandatory; column branch => type is 'text', is indexed, - mandatory; + is mandatory; column rel_path => type is 'text', is indexed, - mandatory; + is mandatory; };