20 lines
429 B
Python
20 lines
429 B
Python
|
# Generated by Django 2.2.6 on 2019-10-28 08:29
|
||
|
|
||
|
from django.conf import settings
|
||
|
from django.db import migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
||
|
('passbook_audit', '0001_initial'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.RenameModel(
|
||
|
old_name='AuditEntry',
|
||
|
new_name='Event',
|
||
|
),
|
||
|
]
|