Skip to content

Commit 8ae7a02

Browse files
Migrations file updated
1 parent 3d26a1b commit 8ae7a02

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

drf_api_logger/migrations/0001_initial.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class Migration(migrations.Migration):
1616
fields=[
1717
('id', models.BigAutoField(primary_key=True, serialize=False)),
1818
('added_on', models.DateTimeField()),
19-
('api', models.CharField(help_text='API URL', max_length=1024)),
19+
('api', models.CharField(help_text='API URL', max_length=512)),
2020
('headers', models.TextField()),
2121
('body', models.TextField()),
2222
('method', models.CharField(db_index=True, max_length=10)),
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 3.1.5 on 2021-12-21 16:25
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('drf_api_logger', '0001_initial'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='apilogsmodel',
15+
name='api',
16+
field=models.CharField(help_text='API URL', max_length=1024),
17+
),
18+
]

0 commit comments

Comments
 (0)