Skip to content

Commit

Permalink
users: drop User.birthdate field for real
Browse files Browse the repository at this point in the history
  • Loading branch information
xavfernandez committed Sep 5, 2024
1 parent 1c03698 commit 79b4d0d
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions itou/users/migrations/0013_drop_users_user_birthdate_for_real.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Generated by Django 5.0.8 on 2024-09-05 11:44

from django.db import migrations


class Migration(migrations.Migration):
dependencies = [
("users", "0012_remove_user_birthdate"),
]

operations = [
# TODO(xfernandez): merge this with 0012_remove_user_birthdate once run in production
migrations.RunSQL('ALTER TABLE "users_user" DROP COLUMN birthdate;', elidable=True),
]

0 comments on commit 79b4d0d

Please sign in to comment.