26 lines
630 B
Python
26 lines
630 B
Python
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('accounting', '0007_backfill_voucher_numbers'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='invoice',
|
|
name='status',
|
|
field=models.CharField(
|
|
choices=[
|
|
('draft', 'Draft'),
|
|
('confirmed', 'Confirmed'),
|
|
('paid', 'Paid'),
|
|
('cancelled', 'Cancelled'),
|
|
],
|
|
default='draft',
|
|
max_length=20,
|
|
),
|
|
),
|
|
]
|