]> git.p6c8.net - pcdenotes.git/blobdiff - notes/migrations/0002_alter_note_title.py
Allow a title of a note used be more than once
[pcdenotes.git] / notes / migrations / 0002_alter_note_title.py
diff --git a/notes/migrations/0002_alter_note_title.py b/notes/migrations/0002_alter_note_title.py
new file mode 100644 (file)
index 0000000..49ea315
--- /dev/null
@@ -0,0 +1,18 @@
+# Generated by Django 3.2.11 on 2022-01-23 21:03
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('notes', '0001_initial'),
+    ]
+
+    operations = [
+        migrations.AlterField(
+            model_name='note',
+            name='title',
+            field=models.CharField(max_length=250),
+        ),
+    ]

patrick-canterino.de