forked from mike/django
18 lines
393 B
Python
18 lines
393 B
Python
|
# Generated by Django 4.2 on 2023-04-20 12:34
|
||
|
|
||
|
from django.db import migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('base', '0002_initial'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterModelOptions(
|
||
|
name='vendorsdata',
|
||
|
options={'ordering': ['-id'], 'verbose_name': 'Vendor', 'verbose_name_plural': 'Vendors'},
|
||
|
),
|
||
|
]
|