Skip to content

Commit

Permalink
Added migrations file
Browse files Browse the repository at this point in the history
  • Loading branch information
tsu-ki committed Dec 3, 2024
1 parent 10a2139 commit e8211e6
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions website/migrations/0161_alter_badge_icon_alter_ip_agent.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Generated by Django 5.1.3 on 2024-12-03 00:11

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("website", "0160_merge_20241129_0712"),
]

operations = [
migrations.AlterField(
model_name="badge",
name="icon",
field=models.ImageField(blank=True, null=True, upload_to="badges/"),
),
migrations.AlterField(
model_name="ip",
name="agent",
field=models.TextField(blank=True, null=True),
),
]

0 comments on commit e8211e6

Please sign in to comment.