From 1db503c2254060b813cd769a24e709d321ce5441 Mon Sep 17 00:00:00 2001 From: eric Date: Wed, 19 Apr 2023 17:24:37 -0400 Subject: [PATCH] add migration --- .../0002_alter_check_content_type.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 doab_check/migrations/0002_alter_check_content_type.py diff --git a/doab_check/migrations/0002_alter_check_content_type.py b/doab_check/migrations/0002_alter_check_content_type.py new file mode 100644 index 0000000..7290c01 --- /dev/null +++ b/doab_check/migrations/0002_alter_check_content_type.py @@ -0,0 +1,18 @@ +# Generated by Django 4.1.7 on 2023-04-19 21:24 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('doab_check', '0001_initial'), + ] + + operations = [ + migrations.AlterField( + model_name='check', + name='content_type', + field=models.CharField(max_length=255, null=True), + ), + ]