Skip to content

Commit

Permalink
Add missing migration
Browse files Browse the repository at this point in the history
  • Loading branch information
supertom01 committed Sep 5, 2023
1 parent c3cf800 commit f51348f
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions teams/migrations/0014_alter_team_main_color.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by Django 4.2.5 on 2023-09-05 21:54

import colorfield.fields
from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
('teams', '0013_alter_teamtextsection_title'),
]

operations = [
migrations.AlterField(
model_name='team',
name='main_color',
field=colorfield.fields.ColorField(default='#FFFFFF', help_text="In most cases this would be your teams color. It is used to color the headers and icons on your team's page.", image_field=None, max_length=25, samples=None),
),
]

0 comments on commit f51348f

Please sign in to comment.