Code Review
/
laas.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
4b7ce39ea4b5a67426842a6f5388c0f3864e1373
[laas.git]
/
src
/
api
/
migrations
/
0018_apilog_ip_addr.py
1
# Generated by Django 2.2 on 2021-03-22 18:12
2
3
from django.db import migrations, models
4
5
6
class Migration(migrations.Migration):
7
8
dependencies = [
9
('api', '0017_apilog'),
10
]
11
12
operations = [
13
migrations.AddField(
14
model_name='apilog',
15
name='ip_addr',
16
field=models.GenericIPAddressField(null=True),
17
),
18
]