mirror of
https://github.com/lemeow125/Borrowing-TrackerBackend.git
synced 2025-01-31 13:08:15 +08:00
18 lines
425 B
Python
18 lines
425 B
Python
# Generated by Django 5.0.1 on 2024-01-11 03:58
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('transactions', '0002_alter_transaction_transaction_status'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='transaction',
|
|
name='section',
|
|
field=models.CharField(max_length=255, null=True),
|
|
),
|
|
]
|