Changes between Initial Version and Version 1 of Ticket #34879
- Timestamp:
- Sep 28, 2023, 4:31:11 AM (14 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #34879 – Description
initial v1 33 33 In the local environment and with integration-tests, everything works fine. 34 34 35 My solution for now - to make sure there isn't a downtime due to migrations - is to execute following SQL before migrating: 36 `ALTER TABLE someapp_somemodel CHANGE some_self_foreignkey_id some_self_foreignkey_id BIGINT(20) NULL;` 35 ~~My solution for now - to make sure there isn't a downtime due to migrations - is to execute following SQL before migrating:~~ 36 ~~`ALTER TABLE someapp_somemodel CHANGE some_self_foreignkey_id some_self_foreignkey_id BIGINT(20) NULL;`~~ 37 ''(edit: that alone doesn't work due to the constraints)'' 37 38 38 39 ----