Laravel Migration
Recreate migration file from database and tables.
Package : https://github.com/kitloong/laravel-migrations-generator
php artisan migrate:generate
Possible error: Unknown database type bit requested, Doctrine\DBAL\Platforms\PostgreSQL94Platform may not support it.
Temporary Fixes:
Edit file in line 423:
vendor\doctrine\dbal\src\Schema\PostgreSQLSchemaManager.php
if($dbType=='bit') {
$dbType = "boolean";
}
Execute : skipping view and procedure
php artisan migrate:generate --skip-views --skip-proc