Skip to content

Commit

Permalink
Add migration
Browse files Browse the repository at this point in the history
  • Loading branch information
juuso-j committed Apr 30, 2024
1 parent 6a320ec commit 8d811d9
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions profiles/migrations/0022_cumulativeresultcount.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Generated by Django 4.1.13 on 2024-04-30 07:23

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("profiles", "0021_result_num_options"),
]

operations = [
migrations.CreateModel(
name="CumulativeResultCount",
fields=[],
options={
"proxy": True,
"indexes": [],
"constraints": [],
},
bases=("profiles.result",),
),
]

0 comments on commit 8d811d9

Please sign in to comment.