diff options
author | Sean Smith <ssmith@iol.unh.edu> | 2021-03-19 11:48:00 -0400 |
---|---|---|
committer | Sean Smith <ssmith@iol.unh.edu> | 2021-05-28 11:06:08 -0400 |
commit | ced6bf516bb08073288d4ad0a47d136a504a95c8 (patch) | |
tree | acc9520f5175c06eaad3b701f539de255de56d1f /src/api/migrations/0020_auto_20210322_2218.py | |
parent | 8086a7aa9aa95d5af341b67cba85b1377a168b98 (diff) |
API V1
Change-Id: I38bc35eeecc0cc7d2334d1fb4b9f215a291e31f6
Signed-off-by: Sean Smith <ssmith@iol.unh.edu>
Diffstat (limited to 'src/api/migrations/0020_auto_20210322_2218.py')
-rw-r--r-- | src/api/migrations/0020_auto_20210322_2218.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/api/migrations/0020_auto_20210322_2218.py b/src/api/migrations/0020_auto_20210322_2218.py new file mode 100644 index 0000000..0252c79 --- /dev/null +++ b/src/api/migrations/0020_auto_20210322_2218.py @@ -0,0 +1,23 @@ +# Generated by Django 2.2 on 2021-03-22 22:18 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('api', '0019_auto_20210322_1823'), + ] + + operations = [ + migrations.AddField( + model_name='apilog', + name='method', + field=models.CharField(max_length=4, null=True), + ), + migrations.AlterField( + model_name='apilog', + name='endpoint', + field=models.CharField(max_length=300, null=True), + ), + ] |