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 --- activities/migrations/0008_postattachment.py | 69 ---------------------------- 1 file changed, 69 deletions(-) delete mode 100644 activities/migrations/0008_postattachment.py (limited to 'activities/migrations/0008_postattachment.py') diff --git a/activities/migrations/0008_postattachment.py b/activities/migrations/0008_postattachment.py deleted file mode 100644 index 168ed58..0000000 --- a/activities/migrations/0008_postattachment.py +++ /dev/null @@ -1,69 +0,0 @@ -# Generated by Django 4.1.3 on 2022-11-17 05:42 - -import django.db.models.deletion -from django.db import migrations, models - -import activities.models.post_attachment -import stator.models - - -class Migration(migrations.Migration): - - dependencies = [ - ("activities", "0007_post_edited"), - ] - - operations = [ - migrations.CreateModel( - name="PostAttachment", - fields=[ - ( - "id", - models.BigAutoField( - auto_created=True, - primary_key=True, - serialize=False, - verbose_name="ID", - ), - ), - ("state_ready", models.BooleanField(default=True)), - ("state_changed", models.DateTimeField(auto_now_add=True)), - ("state_attempted", models.DateTimeField(blank=True, null=True)), - ("state_locked_until", models.DateTimeField(blank=True, null=True)), - ( - "state", - stator.models.StateField( - choices=[("new", "new"), ("fetched", "fetched")], - default="new", - graph=activities.models.post_attachment.PostAttachmentStates, - max_length=100, - ), - ), - ("mimetype", models.CharField(max_length=200)), - ( - "file", - models.FileField( - blank=True, null=True, upload_to="attachments/%Y/%m/%d/" - ), - ), - ("remote_url", models.CharField(blank=True, max_length=500, null=True)), - ("name", models.TextField(blank=True, null=True)), - ("width", models.IntegerField(blank=True, null=True)), - ("height", models.IntegerField(blank=True, null=True)), - ("focal_x", models.IntegerField(blank=True, null=True)), - ("focal_y", models.IntegerField(blank=True, null=True)), - ("blurhash", models.TextField(blank=True, null=True)), - ( - "post", - models.ForeignKey( - on_delete=django.db.models.deletion.CASCADE, - related_name="attachments", - to="activities.post", - ), - ), - ], - options={ - "abstract": False, - }, - ), - ] -- cgit v1.2.3