Use ALTER
statement for dropping and renaming colmuns
#887
Labels
enhancement
A feature that exists, works as intended but needs to be improved
feature request
A feature that does not yet exist but will be a good addition to the library
Describe the feature as you'd like to see it
Use the actual
ALTER TABLE RENAME COLUMN
andALTER TABLE DROP COLUMN
in thePostgresPlatform
. Also, creating a temporary colmun instead of a whole temporary table when editing a colmun seems simpler, safer and might be a great addition.What do we currently have to do now?
Create a new temporary table containing the new modified colmuns, dropping the original one, and re-creating it.
Additional context
See the actual implementation and the official documentation
The text was updated successfully, but these errors were encountered: