mirror of
https://github.com/lemeow125/Borrowing-TrackerBackend.git
synced 2024-11-17 14:29:28 +08:00
19 lines
396 B
Python
19 lines
396 B
Python
|
# Generated by Django 4.2.7 on 2023-12-08 15:55
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('transactions', '0001_initial'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='transaction',
|
||
|
name='remarks',
|
||
|
field=models.TextField(max_length=512, null=True),
|
||
|
),
|
||
|
]
|