blob: 3b6dfb23309cc8946e561f7248c208255ac56a13 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Generated by Django 2.1.1 on 2018-09-03 19:02
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('income', '0004_invoice_invoiceitem'),
]
operations = [
migrations.AddField(
model_name='invoice',
name='slug',
field=models.SlugField(default='slug'),
preserve_default=False,
),
]
|