SQLite Migrations: Support more operations using PRAGMA writable_schema #7969
Labels
closed-out-of-scope
This is not something that will be fixed/implemented and the issue is closed.
punted-for-2.0
type-enhancement
PRAGMA writable_schema = 1;
can be used for changes that don't affect the on-disk content:AlterColumn
(whendefaultValue
ordefaultValueSql
change ornullable
changes tofalse
)DropForeignKey
RenameColumn
This could be a cheaper alternative to implementing full table rebuilds.
The text was updated successfully, but these errors were encountered: