Laravel 5.5.
I need to add an additional table to DB without loss of data in existing tables. Re-seeding after the "php artisan migrate: rollback" is not suitable, since there is too much data and seeding will last for several days.
Is it possible to add new table without any affect on the existing tables?
php artisan migrateand that will just run any migrations you have not ran already.