diff --git a/config/models.php b/config/models.php index 9eb43c1a..c5b09cd9 100644 --- a/config/models.php +++ b/config/models.php @@ -211,7 +211,7 @@ | TRUE: Schema name will be prepended on the table | FALSE:Table name will be set without schema name. | NULL: Table name will follow laravel pattern, - | i.e if class name(plural) matches table name, then table name will not be added + | i.e. if class name(plural) matches table name, then table name will not be added */ 'qualified_tables' => false, @@ -253,11 +253,11 @@ | Casts |-------------------------------------------------------------------------- | - | You may want to specify which of your table fields should be casted as - | something different than a string. For instance, you may want a - | text field be casted as an array or and object. + | You may want to specify which of your table fields should be cast as + | something other than a string. For instance, you may want a + | text field be cast as an array or and object. | - | You may define column patterns which will be casted using the value + | You may define column patterns which will be cast using the value | assigned. We have defined some fields for you. Feel free to | modify them to fit your needs. | @@ -281,6 +281,10 @@ 'except' => [ 'migrations', + 'failed_jobs', + 'password_resets', + 'personal_access_tokens', + 'password_reset_tokens', ], /* @@ -416,7 +420,7 @@ |-------------------------------------------------------------------------- | Move $fillable property to base files |-------------------------------------------------------------------------- - | When base_files is true you can set fillable_in_base_files to true + | When base_files is true you can set fillable_in_base_files to true | if you want the $fillable to be generated in base files | */