Skip to content

Commit

Permalink
fixed migration conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
hexwhiz committed Oct 28, 2024
1 parent 1cdd6fa commit b7a7d9c
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 3 deletions.
18 changes: 18 additions & 0 deletions project/migrations/0042_alter_issue_levelcolor.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.1 on 2024-10-24 16:35

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('project', '0041_issue_levelcolor'),
]

operations = [
migrations.AlterField(
model_name='issue',
name='levelcolor',
field=models.PositiveSmallIntegerField(choices=[(0, '#f2f2f2'), (4, '#39c0ed'), (1, '#00b74a'), (2, '#ffa900'), (3, '#f93154')], default=1, verbose_name='Level Color'),
),
]
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
class Migration(migrations.Migration):

dependencies = [
('project', '0041_issue_levelcolor'),
('project', '0042_alter_issue_levelcolor'),
]

operations = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
class Migration(migrations.Migration):

dependencies = [
('project', '0042_project_mentor_project_mentor_url_and_more'),
('project', '0043_project_mentor_project_mentor_url_and_more'),
]

operations = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
class Migration(migrations.Migration):

dependencies = [
('project', '0043_project_description'),
('project', '0044_project_description'),
]

operations = [
Expand Down

0 comments on commit b7a7d9c

Please sign in to comment.