Xethron / migrations-generator

Laravel Migrations Generator: Automatically generate your migrations from an existing database schema.
MIT License
3.32k stars 588 forks source link

Add support for jsonb. #116

Closed adrianb93 closed 7 years ago

adrianb93 commented 7 years ago

Fix issue #115 by adding support for the jsonb column.

$connection->getDatabasePlatform()->registerDoctrineTypeMapping('jsonb', 'text');
Xethron commented 7 years ago

Hello @AdrianB93, thanks you for fixing this, looks good!