Releases: kitloong/laravel-migrations-generator
Releases · kitloong/laravel-migrations-generator
v6.4.0
- Generate PgSQL custom column types. #65 , #75
v6.3.2
- Fallback to
longText
if CHECK_CONSTRAINTS
is not available. #103
v6.3.1
- Fix view migrations not generated if database type is PgSQL #99
v6.3.0
- Generate connection name if
--connection
is specified #95
- Generate SQL expression default value as
DB::raw()
#96
v6.2.1
- Generate primary key as increments for
PgSQL
, SQLSrv
, and SQLite
.
v6.1.0
- Support SQLite database. #86
v6.0.0
- Code refactored, abstract
doctrine/dbal
.
- Added
fulltext
index support.
- Added more test cases.
- Fixd miscellaneous bugs.
v5.2.2
- Fixed unable to generate
Postgres
migrations when using --connection
#84
v5.2.1
- Fixed TypeError on generate migration files #79
money
and smallmoney
will now generated as decimal(19,4)
and decimal(10,4)
respectively. #78
- Minor update code structure.