Make fieldType a required parameter of a Definition Asset property.
This commit is contained in:
parent
f997981d73
commit
3b31069b1c
2 changed files with 41 additions and 12 deletions
|
|
@ -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' => (
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue