From 81de10b70c85c5222b17d8c4358a8aa8812f2559 Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Fri, 18 Nov 2022 08:28:15 -0700 Subject: Migration reset, start of docs, env vars --- .../migrations/0009_alter_postattachment_file.py | 28 ---------------------- 1 file changed, 28 deletions(-) delete mode 100644 activities/migrations/0009_alter_postattachment_file.py (limited to 'activities/migrations/0009_alter_postattachment_file.py') diff --git a/activities/migrations/0009_alter_postattachment_file.py b/activities/migrations/0009_alter_postattachment_file.py deleted file mode 100644 index 0a250c3..0000000 --- a/activities/migrations/0009_alter_postattachment_file.py +++ /dev/null @@ -1,28 +0,0 @@ -# Generated by Django 4.1.3 on 2022-11-18 01:40 - -import functools - -from django.db import migrations, models - -import core.uploads - - -class Migration(migrations.Migration): - - dependencies = [ - ("activities", "0008_postattachment"), - ] - - operations = [ - migrations.AlterField( - model_name="postattachment", - name="file", - field=models.FileField( - blank=True, - null=True, - upload_to=functools.partial( - core.uploads.upload_namer, *("attachments",), **{} - ), - ), - ), - ] -- cgit v1.2.3