Skip to content

Commit

Permalink
Format migration
Browse files Browse the repository at this point in the history
  • Loading branch information
davegaeddert committed Feb 6, 2025
1 parent 16e0efd commit 5badcde
Showing 1 changed file with 7 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,24 @@


class Migration(migrations.Migration):

dependencies = [
('plainredirection', '0006_alter_notfoundlog_user_agent_and_more'),
("plainredirection", "0006_alter_notfoundlog_user_agent_and_more"),
]

operations = [
migrations.AlterField(
model_name='redirect',
name='http_status',
model_name="redirect",
name="http_status",
field=models.PositiveSmallIntegerField(default=301),
),
migrations.AlterField(
model_name='redirect',
name='order',
model_name="redirect",
name="order",
field=models.PositiveSmallIntegerField(db_index=True, default=0),
),
migrations.AlterField(
model_name='redirectlog',
name='http_status',
model_name="redirectlog",
name="http_status",
field=models.PositiveSmallIntegerField(default=301),
),
]

0 comments on commit 5badcde

Please sign in to comment.