From 643c45882fe39d3bf96cbb67d5484395132ad510 Mon Sep 17 00:00:00 2001 From: zty Date: Fri, 12 Sep 2025 14:43:35 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20ofm-=E4=BF=AE=E6=94=B9=E5=AD=97?= =?UTF-8?q?=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../0008_remove_borrowrecord_borrow_user.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 apps/ofm/migrations/0008_remove_borrowrecord_borrow_user.py diff --git a/apps/ofm/migrations/0008_remove_borrowrecord_borrow_user.py b/apps/ofm/migrations/0008_remove_borrowrecord_borrow_user.py new file mode 100644 index 00000000..e8bfb234 --- /dev/null +++ b/apps/ofm/migrations/0008_remove_borrowrecord_borrow_user.py @@ -0,0 +1,17 @@ +# Generated by Django 3.2.12 on 2025-09-12 06:42 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('ofm', '0007_auto_20250911_1441'), + ] + + operations = [ + migrations.RemoveField( + model_name='borrowrecord', + name='borrow_user', + ), + ]