From 710de8432d1cea573b14cbcbec1adfb2ef7b6808 Mon Sep 17 00:00:00 2001 From: youngS Date: Wed, 19 May 2021 21:42:39 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=9F=9F=E5=90=8D=E7=BB=91?= =?UTF-8?q?=E5=AE=9A=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../migrations/0051_remove_apps_domain_name.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 fir_ser/api/migrations/0051_remove_apps_domain_name.py diff --git a/fir_ser/api/migrations/0051_remove_apps_domain_name.py b/fir_ser/api/migrations/0051_remove_apps_domain_name.py new file mode 100644 index 0000000..afe5b21 --- /dev/null +++ b/fir_ser/api/migrations/0051_remove_apps_domain_name.py @@ -0,0 +1,16 @@ +# Generated by Django 3.0.3 on 2021-05-19 21:41 + +from django.db import migrations + + +class Migration(migrations.Migration): + dependencies = [ + ('api', '0050_userdomaininfo_app_id'), + ] + + operations = [ + migrations.RemoveField( + model_name='apps', + name='domain_name', + ), + ]