Wow! Some are features I really missed (DROP COLUMN, RETURNING), others are also nice to have! All are really useful for my usecases!
DROP COLUMN
RETURNING
Drop column will fix a lot of issues regarding ORMs. For example: Alembic migrations will not error out anymore. That was the sole reason I switched to postgres in a few projects.
Wow! Some are features I really missed (
DROP COLUMN
,RETURNING
), others are also nice to have! All are really useful for my usecases!Drop column will fix a lot of issues regarding ORMs. For example: Alembic migrations will not error out anymore. That was the sole reason I switched to postgres in a few projects.