This release adds config options to allow the developer to control whether the database/views
and database/procedures
folders are created.
For users updating, you may wish to add the following snippet to your config/sqlviews.php
file:
'folder' => [
'create' => [
'views' => env('SQL_VIEWS_REGISTER_VIEWS_FOLDER', true),
'procedures' => env('SQL_VIEWS_REGISTER_PROCEDURES_FOLDER', true)
]
]