Skip to content

Commit

Permalink
migrate ownershiprequests
Browse files Browse the repository at this point in the history
  • Loading branch information
gabeweng committed Oct 18, 2024
1 parent 38224e3 commit dc828b2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 22 deletions.
14 changes: 0 additions & 14 deletions backend/clubs/migrations/0117_merge_20241015_1652.py

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 5.0.4 on 2024-10-06 05:12
# Generated by Django 5.0.4 on 2024-10-18 05:04

import django.db.models.deletion
from django.conf import settings
Expand All @@ -8,7 +8,7 @@
class Migration(migrations.Migration):

dependencies = [
("clubs", "0113_badge_message"),
("clubs", "0117_clubapprovalresponsetemplate"),
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
]

Expand All @@ -20,19 +20,16 @@ class Migration(migrations.Migration):
auto_created=True,
primary_key=True,
serialize=False,
verbose_name="ID"
)),
verbose_name="ID")),
("withdrew", models.BooleanField(default=False)),
("created_at", models.DateTimeField(auto_now_add=True)),
("updated_at", models.DateTimeField(auto_now=True)),
("club", models.ForeignKey(
on_delete=django.db.models.deletion.CASCADE,
to="clubs.club"
)),
to="clubs.club")),
("person", models.ForeignKey(
on_delete=django.db.models.deletion.CASCADE,
to=settings.AUTH_USER_MODEL
)),
to=settings.AUTH_USER_MODEL)),
],
options={
"unique_together": {("person", "club")},
Expand Down

0 comments on commit dc828b2

Please sign in to comment.