1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- // ██╗ ██╗ █████╗ ██╗ ██╗██████╗
- // ██║ ██║██╔══██╗██║ ██║██╔══██╗
- // ██║ ██║███████║██║ ██║██║ ██║
- // ╚██╗ ██╔╝██╔══██║██║ ██║██║ ██║
- // ╚████╔╝ ██║ ██║███████╗██║██████╔╝
- // ╚═══╝ ╚═╝ ╚═╝╚══════╝╚═╝╚═════╝
- //
- // ██████╗ ██████╗ ██████╗ ██████╗ ███████╗██████╗ ████████╗██╗███████╗███████╗
- // ██╔══██╗██╔══██╗██╔═══██╗██╔══██╗██╔════╝██╔══██╗╚══██╔══╝██║██╔════╝██╔════╝
- // ██████╔╝██████╔╝██║ ██║██████╔╝█████╗ ██████╔╝ ██║ ██║█████╗ ███████╗
- // ██╔═══╝ ██╔══██╗██║ ██║██╔═══╝ ██╔══╝ ██╔══██╗ ██║ ██║██╔══╝ ╚════██║
- // ██║ ██║ ██║╚██████╔╝██║ ███████╗██║ ██║ ██║ ██║███████╗███████║
- // ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚══════╝╚═╝ ╚═╝ ╚═╝ ╚═╝╚══════╝╚══════╝
- //
- module.exports = [
- // Basic semantics:
- 'type',
- 'defaultsTo',
- 'required',
- 'allowNull',
- 'autoUpdatedAt',
- 'autoCreatedAt',
- // Auto-migrations:
- 'autoMigrations',
- // High-level validation rules:
- 'validations',
- // Associations:
- 'through',
- 'collection',
- 'model',
- 'via',
- 'dominant',
- // Adapter:
- 'columnName',
- 'meta',
- // At-rest encryption:
- 'encrypt',
- // Advisory
- 'description',
- 'extendedDescription',
- 'moreInfoUrl',
- 'example',
- 'protect',
- ];
|