From 649153187a60efd375f3ac96627d9a1e7a843a0a Mon Sep 17 00:00:00 2001 From: Alexandra Bruckner Date: Fri, 19 Apr 2024 12:14:24 +0200 Subject: [PATCH] SIAIDASE-36: add content type update SQL to migration instructions in README --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 7127e42..0538af0 100644 --- a/README.md +++ b/README.md @@ -112,6 +112,7 @@ Newer releases are published as [drf-multitokenauth](https://pypi.org/project/dr ``` ALTER TABLE django_rest_multitokenauth_multitoken RENAME to drf_multitokenauth_multitoken; UPDATE django_migrations SET app = 'drf_multitokenauth' WHERE app = 'django_rest_multitokenauth'; + UPDATE django_content_type SET app_label = 'drf_multitokenauth' WHERE app_label = 'django_rest_multitokenauth'; ``` 4. Run Django migrations