From 75825f5baa4a3a622e0bfc5de54fbd3fda99402e Mon Sep 17 00:00:00 2001 From: "Jiangjie.Bai" Date: Fri, 4 Mar 2022 18:01:51 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=88=A0=E9=99=A4jms=5Foidc=5Frp?= =?UTF-8?q?=E5=8C=85=E4=B8=AD=E7=9A=84=E8=A1=A8jms=5Foidc=5Frp=5Foidcuser?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../migrations/0009_auto_20220304_1736.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 apps/authentication/migrations/0009_auto_20220304_1736.py diff --git a/apps/authentication/migrations/0009_auto_20220304_1736.py b/apps/authentication/migrations/0009_auto_20220304_1736.py new file mode 100644 index 000000000..5a4c87b25 --- /dev/null +++ b/apps/authentication/migrations/0009_auto_20220304_1736.py @@ -0,0 +1,17 @@ +# Generated by Django 3.1.14 on 2022-03-04 09:36 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('authentication', '0008_superconnectiontoken'), + ] + + operations = [ + # 删除 jms_oidc_rp 中的Model + migrations.RunSQL( + sql='DROP TABLE `jms_oidc_rp_oidcuser` CASCADE;', + ), + ]