Make fieldType a required parameter of a Definition Asset property.

This commit is contained in:
Colin Kuskie 2009-12-17 13:00:54 -08:00
parent f997981d73
commit 3b31069b1c
2 changed files with 41 additions and 12 deletions

View file

@ -39,11 +39,13 @@ The following methods are added.
extends 'WebGUI::Definition::Meta::Property';
has 'tableName' => (
is => 'ro',
is => 'ro',
required => 1,
);
has 'fieldType' => (
is => 'ro',
is => 'ro',
required => 1,
);
has 'noFormPost' => (