Changes between Version 4 and Version 5 of Ticket #29182
- Timestamp:
- Mar 3, 2018, 2:21:10 PM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #29182 – Description
v4 v5 1 SQLite table alteration uses rename and copy method. When running a database migration from Django command (via `call_command('migrate')`), database is left with references to <table_name>__oldtable that has been dropped after migration.1 SQLite table alteration uses rename and copy method. When running a database migration from Django command (via `call_command('migrate')`), database is left with references to `<table_name>__old` table that has been dropped after migration. 2 2 3 3 This happens only when running SQLite DB migrations from management command under transaction.