axn / laravel-pk-int-to-bigint
Convert DB primary keys and related foreign keys type from INT to BIGINT in a Laravel project
Installs: 3 973
Dependents: 0
Suggesters: 0
Security: 0
Stars: 18
Watchers: 3
Forks: 5
Open Issues: 3
Requires
- php: ^8.1
- doctrine/dbal: ^3.5 || ^3.6
- illuminate/database: ^8.0 || ^9.0 || ^10.0
- illuminate/support: ^8.0 || ^9.0 || ^10.0
README
This package convert DB primary keys and related foreign keys type from INT to BIGINT in a Laravel project.
This is especially useful for old projects that need to be updated.
Indeed, since Laravel 5.8 the ID columns are by default of type BIGINT. If you install new packages that use this new "standard" you will have trouble creating the foreign keys.
As a result, this package will be of great help to you to modernize an old application.
It proceeds in 4 steps:
- introspection of the database and verification of the integrity of foreign keys (if an integrity is not respected it stops and indicates it to you)
- droping all foreign key constraints on each table
- converting INT to BIGINT on primary and foreign key columns on each table
- restoring all foreign key constraints on each table
Instalation
Install the package with Composer:
composer require axn/laravel-pk-int-to-bigint
Usage
First create a dump of your database in case there is a problem.
Manualy
If you want to run the command directly:
php artisan pk-int-to-bigint:transform
With migration
Pusblish the migration:
php artisan vendor:publish --tag="pk-int-to-bigint-migration"
So you can incorporate it into your deployment workflow with:
php artisan migrate