Chore: Remove old migrations and re-create them fresh for v3 (#11854)

This commit is contained in:
Trenton H
2026-01-24 15:02:56 -08:00
committed by GitHub
parent 2d9717a330
commit 4271812c2d
154 changed files with 2337 additions and 12615 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 5.2.9 on 2026-01-20 20:06
from django.db import migrations
from django.db import models
class Migration(migrations.Migration):
dependencies = [
("documents", "0002_initial"),
]
operations = [
migrations.AddField(
model_name="workflowaction",
name="order",
field=models.PositiveIntegerField(default=0, verbose_name="order"),
),
]