|
211 | 211 | | TRUE: Schema name will be prepended on the table
|
212 | 212 | | FALSE:Table name will be set without schema name.
|
213 | 213 | | NULL: Table name will follow laravel pattern,
|
214 |
| - | i.e if class name(plural) matches table name, then table name will not be added |
| 214 | + | i.e. if class name(plural) matches table name, then table name will not be added |
215 | 215 | */
|
216 | 216 |
|
217 | 217 | 'qualified_tables' => false,
|
|
253 | 253 | | Casts
|
254 | 254 | |--------------------------------------------------------------------------
|
255 | 255 | |
|
256 |
| - | You may want to specify which of your table fields should be casted as |
257 |
| - | something different than a string. For instance, you may want a |
258 |
| - | text field be casted as an array or and object. |
| 256 | + | You may want to specify which of your table fields should be cast as |
| 257 | + | something other than a string. For instance, you may want a |
| 258 | + | text field be cast as an array or and object. |
259 | 259 | |
|
260 |
| - | You may define column patterns which will be casted using the value |
| 260 | + | You may define column patterns which will be cast using the value |
261 | 261 | | assigned. We have defined some fields for you. Feel free to
|
262 | 262 | | modify them to fit your needs.
|
263 | 263 | |
|
|
281 | 281 |
|
282 | 282 | 'except' => [
|
283 | 283 | 'migrations',
|
| 284 | + 'failed_jobs', |
| 285 | + 'password_resets', |
| 286 | + 'personal_access_tokens', |
| 287 | + 'password_reset_tokens', |
284 | 288 | ],
|
285 | 289 |
|
286 | 290 | /*
|
|
416 | 420 | |--------------------------------------------------------------------------
|
417 | 421 | | Move $fillable property to base files
|
418 | 422 | |--------------------------------------------------------------------------
|
419 |
| - | When base_files is true you can set fillable_in_base_files to true |
| 423 | + | When base_files is true you can set fillable_in_base_files to true |
420 | 424 | | if you want the $fillable to be generated in base files
|
421 | 425 | |
|
422 | 426 | */
|
|
0 commit comments