You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since 7bcf9b2, dropping columns in SQLite migrations is possible. We may further support altering columns in SQLite by:
ALTERTABLE"foo" RENAME COLUMN "bar" TO "bar_random_string";
ALTERTABLE"foo" ADD "bar" NEW_TYPE NOT NULL DEFAULT "baz"/* comment */;
-- Do not CAST(x as JSON): https://gerrit.sqlalchemy.org/c/sqlalchemy/alembic/+/2011UPDATE"foo"SET"bar"= CAST("bar_random_string"as NEW_TYPE);
ALTERTABLE"foo" DROP COLUMN "bar_random_string";
The text was updated successfully, but these errors were encountered:
Since 7bcf9b2, dropping columns in SQLite migrations is possible. We may further support altering columns in SQLite by:
The text was updated successfully, but these errors were encountered: