mirror of
https://github.com/i701/sarlink-portal-api.git
synced 2025-06-28 09:50:05 +00:00
Initial commit
This commit is contained in:
18
devices/migrations/0002_payment_devices.py
Normal file
18
devices/migrations/0002_payment_devices.py
Normal file
@ -0,0 +1,18 @@
|
||||
# Generated by Django 5.1.2 on 2025-01-20 04:53
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("billing", "0001_initial"),
|
||||
("devices", "0001_initial"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name="payment",
|
||||
name="devices",
|
||||
field=models.ManyToManyField(related_name="payments", to="billing.device"),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user