From 62f4a79ad00a58e3567c021ef0672eeeaf5a1f78 Mon Sep 17 00:00:00 2001 From: TianyangZhang Date: Fri, 24 Oct 2025 13:46:59 +0800 Subject: [PATCH] =?UTF-8?q?feat=20:=20ofm-models=20=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../migrations/0025_alter_patentinfo_area.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 apps/ofm/migrations/0025_alter_patentinfo_area.py diff --git a/apps/ofm/migrations/0025_alter_patentinfo_area.py b/apps/ofm/migrations/0025_alter_patentinfo_area.py new file mode 100644 index 00000000..b299f3ba --- /dev/null +++ b/apps/ofm/migrations/0025_alter_patentinfo_area.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.12 on 2025-10-24 05:46 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('ofm', '0024_auto_20251022_1005'), + ] + + operations = [ + migrations.AlterField( + model_name='patentinfo', + name='area', + field=models.CharField(choices=[('Domestic', '国内申请'), ('Foreign', '国外申请'), ('PCT', 'PCT申请')], default='Domestic', max_length=50, verbose_name='拟申请地域'), + ), + ]