🗃️(teams) remove the slug field in DB

This commit removes the slug field from
the database, now the nullable migration is in
production and the field has been remove from
the code deployed.

FIXES #505
This commit is contained in:
Quentin BEY
2024-11-20 11:09:46 +01:00
committed by BEY Quentin
parent dfecb83c0a
commit 17a1c39dbf

View File

@@ -0,0 +1,17 @@
# Generated by Django 5.1.3 on 2024-11-20 10:08
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('core', '0003_team_slug_nullable'),
]
operations = [
migrations.RemoveField(
model_name='team',
name='slug',
),
]