summaryrefslogtreecommitdiff
path: root/app/posts/migrations
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2023-07-19 15:50:29 -0500
committerluxagraf <sng@luxagraf.net>2023-07-19 15:50:29 -0500
commita22d349573d60564e582b9a314c9463385d03dac (patch)
treea8bb9d9d6e3edbb75e454539cd7cd7caab7e0744 /app/posts/migrations
parent46ecd030e8d2b68f155c6f8d2d4ad653500391c6 (diff)
posts: made create and update forms for notes
Diffstat (limited to 'app/posts/migrations')
-rw-r--r--app/posts/migrations/0011_alter_note_url.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/app/posts/migrations/0011_alter_note_url.py b/app/posts/migrations/0011_alter_note_url.py
new file mode 100644
index 0000000..de97e8a
--- /dev/null
+++ b/app/posts/migrations/0011_alter_note_url.py
@@ -0,0 +1,18 @@
+# Generated by Django 4.2.2 on 2023-07-19 19:46
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('posts', '0010_post_is_live_post_user'),
+ ]
+
+ operations = [
+ migrations.AlterField(
+ model_name='note',
+ name='url',
+ field=models.CharField(blank=True, max_length=400, null=True),
+ ),
+ ]