--- lib/Arh/Model/UnitMaterial.pm 2007/11/29 00:34:22 2 +++ lib/Arh/Model/UnitMaterial.pm 2007/11/30 16:46:39 15 @@ -7,13 +7,21 @@ use Arh::Record schema { column unit => - refers_to Arh::Model::Unit; + refers_to Arh::Model::Unit, + label is _("Unit"), + is required; column material => - refers_to Arh::Model::Material; + refers_to Arh::Model::Material, + label is _("Material"), + is required; }; +#use Jifty::Plugin::ActorMetadata::Mixin::Model::ActorMetadata; # created_by, created_on, updated_on + # Your model-specific methods go here. +use Arh::DefaultACL; + 1;