spatie / laravel-medialibrary

Associate files with Eloquent models
https://spatie.be/docs/laravel-medialibrary
MIT License
5.78k stars 1.08k forks source link

Update create_media_table.php.stub #3576

Closed cleargoal closed 7 months ago

cleargoal commented 7 months ago

add function down() to migration with a purpose to developer may have this when publishing the package assets

freekmurze commented 7 months ago

We don't use down migrations in any package / project

cleargoal commented 7 months ago

We don't use down migrations in any package / project

it's a pity, this caused me some inconvenience

farishrf commented 7 months ago

@cleargoal perhaps the goal of not including a down method is to mitigate the risk of unintended data loss in production environments if php artisan migrate:rollback were to be run by mistake.

cleargoal commented 7 months ago

@cleargoal perhaps the goal of not including a down method is to mitigate the risk of unintended data loss in production environments if php artisan migrate:rollback were to be run by mistake.

Good reason. Thanks!