Skip to content

v1.2.0 - Add config options to disable folder creation

Latest
Compare
Choose a tag to compare
@dave-mills dave-mills released this 12 Oct 11:08
d3771a6

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)
        ]
    ]