From e5c828fbbd321b33eef9ddfea15905354fefa9eb Mon Sep 17 00:00:00 2001 From: "Vincent (Wen Yu) Ge" Date: Wed, 4 Oct 2023 13:56:18 +0000 Subject: [PATCH] Attribute keys must be unique and can't use unique() --- app/config/errors.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/config/errors.php b/app/config/errors.php index 664731f7bf..9d5647dd1b 100644 --- a/app/config/errors.php +++ b/app/config/errors.php @@ -549,7 +549,7 @@ return [ ], Exception::ATTRIBUTE_ALREADY_EXISTS => [ 'name' => Exception::ATTRIBUTE_ALREADY_EXISTS, - 'description' => 'Attribute with the requested ID already exists. Try again with a different ID or use ID.unique() to generate a unique ID.', + 'description' => 'Attribute with the requested ID already exists. Attribute IDs must be unique, try again with a different ID.', 'code' => 409, ], Exception::ATTRIBUTE_LIMIT_EXCEEDED => [