From 17a1c39dbf223025d2cdabf843bf1cd7d7370b4a Mon Sep 17 00:00:00 2001 From: Quentin BEY Date: Wed, 20 Nov 2024 11:09:46 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=97=83=EF=B8=8F(teams)=20remove=20the=20s?= =?UTF-8?q?lug=20field=20in=20DB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- .../core/migrations/0004_remove_team_slug.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/backend/core/migrations/0004_remove_team_slug.py diff --git a/src/backend/core/migrations/0004_remove_team_slug.py b/src/backend/core/migrations/0004_remove_team_slug.py new file mode 100644 index 0000000..4cba8e7 --- /dev/null +++ b/src/backend/core/migrations/0004_remove_team_slug.py @@ -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', + ), + ]