Skip to content

Revert database default string length to 255 characters in a Laravel project

License

Notifications You must be signed in to change notification settings

AXN-Informatique/laravel-revert-db-default-string-length

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Laravel revert DB default string length

This package revert database default string length to 255 characters in a Laravel project. It transforms all VARCHAR(191) columns to 255 characters.

This is especially useful for old projects that need to be updated.

Indeed, since Laravel 5.4 the default charset is "utf8mb4"; charset supported by MySQL from version 5.7.7 So, if the application was not running with this version at least, you had to put in the AppServiceProvider:

Schema::defaultStringLength(191);

As a result, this package will be of great help to you to modernize an old application.

Instalation

Install the package with Composer:

composer require axn/laravel-revert-db-default-string-length

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 revert-db-default-string-length:transform

With migration

Pusblish the migration:

php artisan vendor:publish --tag="revert-db-default-string-length-migration"

So you can incorporate it into your deployment workflow with:

php artisan migrate

Remember to remove Schema::defaultStringLength(191); from your AppServiceProvider file.

About

Revert database default string length to 255 characters in a Laravel project

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages