Skip to content

Commit

Permalink
add migrations for real this time????
Browse files Browse the repository at this point in the history
  • Loading branch information
itsthejoker committed Oct 4, 2022
1 parent ddbedf1 commit 767c5c6
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions blossom/api/migrations/0027_auto_20221004_2042.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Generated by Django 3.2.15 on 2022-10-04 20:42

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("api", "0026_auto_20220825_1917"),
]

operations = [
migrations.AlterField(
model_name="submission",
name="content_url",
field=models.URLField(blank=True, max_length=2000, null=True),
),
migrations.AlterField(
model_name="submission",
name="tor_url",
field=models.URLField(blank=True, max_length=2000, null=True),
),
migrations.AlterField(
model_name="submission",
name="url",
field=models.URLField(blank=True, max_length=2000, null=True),
),
migrations.AlterField(
model_name="transcription",
name="url",
field=models.URLField(blank=True, max_length=2000, null=True),
),
]

0 comments on commit 767c5c6

Please sign in to comment.