mirror of
https://github.com/lemeow125/Borrowing-TrackerBackend.git
synced 2025-05-17 03:48:13 +08:00
Added breakage report model
This commit is contained in:
parent
aa078a78c5
commit
c1a7e21e95
10 changed files with 222 additions and 31 deletions
|
@ -0,0 +1,18 @@
|
|||
# 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),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue