Skip to content

Commit dbe27b3

Browse files
committed
Add migration
1 parent 954f20d commit dbe27b3

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 2.2.24 on 2021-10-27 15:29
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('audit', '0005_migrate_ip_field_values'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='auditlog',
15+
name='action',
16+
field=models.CharField(choices=[('pageview', 'Page view'), ('download', 'Download'), ('authentication', 'Authentication'), ('authentication-failure', 'Authentication failure'), ('log-out', 'Log out')], max_length=150, verbose_name='Action'),
17+
),
18+
]

0 commit comments

Comments
 (0)