Skip to content

Commit

Permalink
Merge pull request #252 from alibori/v1.x
Browse files Browse the repository at this point in the history
Add few tables on the except array, Fix some typo errors
  • Loading branch information
finiteinfinity authored Aug 17, 2023
2 parents b283b30 + f8c17d9 commit 3e0d2e5
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions config/models.php
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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.
|
Expand All @@ -281,6 +281,10 @@

'except' => [
'migrations',
'failed_jobs',
'password_resets',
'personal_access_tokens',
'password_reset_tokens',
],

/*
Expand Down Expand Up @@ -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
|
*/
Expand Down

0 comments on commit 3e0d2e5

Please sign in to comment.