Laravel devs using PostgreSQL, Laravel 13.23 adds support for PostgreSQL's USING clause in migrations. 👀
Why is this useful?
Imagine you have a column storing dates as text (2026-08-02) and want to convert it to a proper DATE column.
PostgreSQL requires a USING clause to describe how existing values should be converted.
Laravel now supports this directly with ->using().