Skip to content

Commit

Permalink
missing migration
Browse files Browse the repository at this point in the history
  • Loading branch information
longhotsummer committed Sep 5, 2024
1 parent 51a1819 commit 0b1c8d3
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions peachjam/migrations/0152_entityprofile_title.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Generated by Django 4.2.14 on 2024-09-05 08:27

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("peachjam", "0151_folder_peachjamsettings_allow_save_documents_and_more"),
]

operations = [
migrations.AddField(
model_name="entityprofile",
name="title",
field=models.CharField(
blank=True, max_length=1024, null=True, verbose_name="Title"
),
),
]

0 comments on commit 0b1c8d3

Please sign in to comment.