1
0
Fork 0
mirror of synced 2024-10-05 12:43:13 +13:00

review comments

This commit is contained in:
Everly Precia Suresh 2022-10-26 17:01:16 +00:00
parent ddd747a084
commit 943a334277
3 changed files with 4 additions and 4 deletions

View file

@ -267,7 +267,7 @@ $collections = [
'$id' => ID::custom('error'),
'type' => Database::VAR_STRING,
'format' => '',
'size' => 255,
'size' => 2048,
'signed' => true,
'required' => true,
'default' => '',
@ -455,7 +455,7 @@ $collections = [
'$id' => ID::custom('error'),
'type' => Database::VAR_STRING,
'format' => '',
'size' => 255,
'size' => 2048,
'signed' => true,
'required' => true,
'default' => '',

View file

@ -30,7 +30,7 @@ class Attribute extends Model
])
->addRule('error', [
'type' => self::TYPE_STRING,
'description' => 'Error message',
'description' => 'Error message. Displays error generated when failure of creating or deleting an attribute.',
'default' => '',
'example' => 'string',
])

View file

@ -30,7 +30,7 @@ class Index extends Model
])
->addRule('error', [
'type' => self::TYPE_STRING,
'description' => 'Error message',
'description' => 'Error message. Displays error generated when failure of creating or deleting an index.',
'default' => '',
'example' => 'string',
])