mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
MINOR: included CustomParameter field to prevent errors while upgrading. Since no way to nicely delete columns completely via the ORM it can sit there and be all empty
This commit is contained in:
parent
50270211f2
commit
78fe9947b9
@ -19,7 +19,8 @@ class EditableFormField extends DataObject {
|
||||
"CanDelete" => "Boolean",
|
||||
"CustomErrorMessage" => "Varchar(255)",
|
||||
"CustomRules" => "Text",
|
||||
"CustomSettings" => "Text"
|
||||
"CustomSettings" => "Text",
|
||||
"CustomParameter" => "Varchar(200)"
|
||||
);
|
||||
|
||||
static $defaults = array(
|
||||
@ -36,6 +37,7 @@ class EditableFormField extends DataObject {
|
||||
);
|
||||
|
||||
protected $readonly;
|
||||
|
||||
|
||||
/**
|
||||
* Set this formfield to readonly
|
||||
|
Loading…
Reference in New Issue
Block a user