diff --git a/src/backend/InvenTree/build/migrations/0055_auto_20250221_1230.py b/src/backend/InvenTree/build/migrations/0055_auto_20250221_1230.py index db6289829b..78ebe1d8ed 100644 --- a/src/backend/InvenTree/build/migrations/0055_auto_20250221_1230.py +++ b/src/backend/InvenTree/build/migrations/0055_auto_20250221_1230.py @@ -14,6 +14,8 @@ class Migration(migrations.Migration): migrations.AlterField( model_name='build', name='link', - field=models.TextField() # Temporary change to force new ALTER COLUMN operation in the next migration + field=models.TextField( + null=True, blank=True + ) # Temporary change to force new ALTER COLUMN operation in the next migration ), ] diff --git a/src/backend/InvenTree/common/migrations/0035_auto_20250221_1513.py b/src/backend/InvenTree/common/migrations/0035_auto_20250221_1513.py index 0eb6592fb6..99db26271a 100644 --- a/src/backend/InvenTree/common/migrations/0035_auto_20250221_1513.py +++ b/src/backend/InvenTree/common/migrations/0035_auto_20250221_1513.py @@ -13,6 +13,8 @@ class Migration(migrations.Migration): operations = [migrations.AlterField( model_name='attachment', name='link', - field=models.TextField() # Temporary change to force new ALTER COLUMN operation in the next migration + field=models.TextField( + null=True, blank=True + ) # Temporary change to force new ALTER COLUMN operation in the next migration ), ]