You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are a number of valid attribute properties that are not currently
included in the documentation. Add them.
References:
1. Explanation: balderdashy/waterline-schema#95 (comment)
Copy file name to clipboardexpand all lines: concepts/ORM/Attributes.md
+71
Original file line number
Diff line number
Diff line change
@@ -296,6 +296,77 @@ attributes: {
296
296
> When using `unique: true` on an attribute with the `utf8mb4` character set in a MySQL database, you will need to set the column size manually via the [`columnType` property](https://sailsjs.com/documentation/concepts/models-and-orm/attributes#?columntype) to avoid a possible 'index too long' error. For example: `columnType: varchar(100) CHARACTER SET utf8mb4`.
297
297
298
298
299
+
### Documenting Attributes
300
+
301
+
The following properties may be used to document model attributes.
302
+
303
+
For example:
304
+
305
+
```javascript
306
+
attributes: {
307
+
username: {
308
+
type:'string',
309
+
description:'Unique username for this user.',
310
+
extendedDescription:`
311
+
Username must be unique, may only contain alphanumeric characters and must start with a letter.
312
+
313
+
They are **optional** as users may use their email address to sign in.
0 commit comments