You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
727 B
Python
24 lines
727 B
Python
# Generated by Django 4.2.5 on 2024-02-24 19:22
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.fields
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('billing', '0010_charge_amount'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Invoice',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('invoice_number', models.CharField(max_length=100)),
|
|
('date_created', models.DateField(verbose_name=django.db.models.fields.DateField)),
|
|
('charge', models.ManyToManyField(to='billing.charge')),
|
|
],
|
|
),
|
|
]
|