Refactor models
This commit is contained in:
@ -1,8 +1,6 @@
|
||||
# Generated by Django 5.1.4 on 2024-12-11 04:58
|
||||
# Generated by Django 5.2 on 2025-05-01 00:02
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import TYPE_CHECKING
|
||||
|
||||
import auto_prefetch
|
||||
import django.contrib.auth.models
|
||||
import django.contrib.auth.validators
|
||||
@ -11,30 +9,70 @@ import django.db.models.manager
|
||||
import django.utils.timezone
|
||||
from django.db import migrations, models
|
||||
|
||||
if TYPE_CHECKING:
|
||||
from django.db.migrations.operations.base import Operation
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
"""Initial migration for the core app.
|
||||
|
||||
This add the following models:
|
||||
- ScrapedJson
|
||||
- User
|
||||
- Owner
|
||||
- Game
|
||||
- DropCampaign
|
||||
- TimeBasedDrop
|
||||
- Benefit
|
||||
"""
|
||||
"""Initial migration for the core app."""
|
||||
|
||||
initial = True
|
||||
|
||||
dependencies: list[tuple[str, str]] = [
|
||||
dependencies = [
|
||||
("auth", "0012_alter_user_first_name_max_length"),
|
||||
]
|
||||
|
||||
operations: list[Operation] = [
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name="Game",
|
||||
fields=[
|
||||
(
|
||||
"game_id",
|
||||
models.TextField(help_text="The Twitch ID of the game.", primary_key=True, serialize=False),
|
||||
),
|
||||
("game_url", models.URLField(blank=True, help_text="The URL to the game on Twitch.")),
|
||||
("display_name", models.TextField(blank=True, help_text="The display name of the game.")),
|
||||
("box_art_url", models.URLField(blank=True, help_text="URL to the box art of the game.")),
|
||||
("slug", models.SlugField(blank=True, help_text="The slug for the game.")),
|
||||
(
|
||||
"created_at",
|
||||
models.DateTimeField(auto_now_add=True, help_text="When the game was first added to the database."),
|
||||
),
|
||||
("modified_at", models.DateTimeField(auto_now=True, help_text="When the game was last modified.")),
|
||||
],
|
||||
options={
|
||||
"ordering": ["display_name"],
|
||||
"abstract": False,
|
||||
"base_manager_name": "prefetch_manager",
|
||||
},
|
||||
managers=[
|
||||
("objects", django.db.models.manager.Manager()),
|
||||
("prefetch_manager", django.db.models.manager.Manager()),
|
||||
],
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name="Organization",
|
||||
fields=[
|
||||
(
|
||||
"org_id",
|
||||
models.TextField(
|
||||
help_text="The Twitch ID of the owner.",
|
||||
primary_key=True,
|
||||
serialize=False,
|
||||
unique=True,
|
||||
),
|
||||
),
|
||||
("name", models.TextField(blank=True, help_text="The name of the owner.")),
|
||||
("created_at", models.DateTimeField(auto_now_add=True)),
|
||||
("modified_at", models.DateTimeField(auto_now=True)),
|
||||
],
|
||||
options={
|
||||
"ordering": ["name"],
|
||||
"abstract": False,
|
||||
"base_manager_name": "prefetch_manager",
|
||||
},
|
||||
managers=[
|
||||
("objects", django.db.models.manager.Manager()),
|
||||
("prefetch_manager", django.db.models.manager.Manager()),
|
||||
],
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name="ScrapedJson",
|
||||
fields=[
|
||||
@ -94,10 +132,7 @@ class Migration(migrations.Migration):
|
||||
"is_active",
|
||||
models.BooleanField(
|
||||
default=True,
|
||||
help_text=(
|
||||
"Designates whether this user should be treated as active. Unselect this instead of"
|
||||
" deleting accounts."
|
||||
),
|
||||
help_text="Designates whether this user should be treated as active. Unselect this instead of deleting accounts.", # noqa: E501
|
||||
verbose_name="active",
|
||||
),
|
||||
),
|
||||
@ -106,10 +141,7 @@ class Migration(migrations.Migration):
|
||||
"groups",
|
||||
models.ManyToManyField(
|
||||
blank=True,
|
||||
help_text=(
|
||||
"The groups this user belongs to. A user will get all permissions granted to each of their"
|
||||
" groups."
|
||||
),
|
||||
help_text="The groups this user belongs to. A user will get all permissions granted to each of their groups.", # noqa: E501
|
||||
related_name="user_set",
|
||||
related_query_name="user",
|
||||
to="auth.group",
|
||||
@ -130,129 +162,126 @@ class Migration(migrations.Migration):
|
||||
],
|
||||
options={
|
||||
"ordering": ["username"],
|
||||
"abstract": False,
|
||||
"base_manager_name": "prefetch_manager",
|
||||
},
|
||||
managers=[
|
||||
("objects", django.contrib.auth.models.UserManager()),
|
||||
],
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name="Owner",
|
||||
fields=[
|
||||
("created_at", models.DateTimeField(auto_created=True)),
|
||||
(
|
||||
"twitch_id",
|
||||
models.TextField(help_text="The Twitch ID of the owner.", primary_key=True, serialize=False),
|
||||
),
|
||||
("modified_at", models.DateTimeField(auto_now=True)),
|
||||
("name", models.TextField(blank=True, help_text="The name of the owner.")),
|
||||
],
|
||||
options={
|
||||
"ordering": ["name"],
|
||||
"abstract": False,
|
||||
"base_manager_name": "prefetch_manager",
|
||||
"indexes": [
|
||||
models.Index(fields=["name"], name="owner_name_idx"),
|
||||
models.Index(fields=["created_at"], name="owner_created_at_idx"),
|
||||
],
|
||||
},
|
||||
managers=[
|
||||
("objects", django.db.models.manager.Manager()),
|
||||
("prefetch_manager", django.db.models.manager.Manager()),
|
||||
],
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name="Game",
|
||||
fields=[
|
||||
(
|
||||
"created_at",
|
||||
models.DateTimeField(auto_created=True, help_text="When the game was first added to the database."),
|
||||
),
|
||||
(
|
||||
"twitch_id",
|
||||
models.TextField(help_text="The Twitch ID of the game.", primary_key=True, serialize=False),
|
||||
),
|
||||
("modified_at", models.DateTimeField(auto_now=True, help_text="When the game was last modified.")),
|
||||
("game_url", models.URLField(blank=True, help_text="The URL to the game on Twitch.")),
|
||||
("display_name", models.TextField(blank=True, help_text="The display name of the game.")),
|
||||
("name", models.TextField(blank=True, help_text="The name of the game.")),
|
||||
("box_art_url", models.URLField(blank=True, help_text="URL to the box art of the game.")),
|
||||
("slug", models.TextField(blank=True)),
|
||||
(
|
||||
"org",
|
||||
auto_prefetch.ForeignKey(
|
||||
null=True,
|
||||
on_delete=django.db.models.deletion.CASCADE,
|
||||
related_name="games",
|
||||
to="core.owner",
|
||||
),
|
||||
),
|
||||
],
|
||||
options={
|
||||
"ordering": ["display_name"],
|
||||
"abstract": False,
|
||||
"base_manager_name": "prefetch_manager",
|
||||
},
|
||||
managers=[
|
||||
("objects", django.db.models.manager.Manager()),
|
||||
("prefetch_manager", django.db.models.manager.Manager()),
|
||||
],
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name="DropCampaign",
|
||||
fields=[
|
||||
(
|
||||
"created_at",
|
||||
models.DateTimeField(
|
||||
auto_created=True,
|
||||
help_text="When the drop campaign was first added to the database.",
|
||||
),
|
||||
),
|
||||
(
|
||||
"twitch_id",
|
||||
"campaign_id",
|
||||
models.TextField(
|
||||
help_text="The Twitch ID of the drop campaign.",
|
||||
primary_key=True,
|
||||
serialize=False,
|
||||
unique=True,
|
||||
),
|
||||
),
|
||||
(
|
||||
"modified_at",
|
||||
models.DateTimeField(auto_now=True, help_text="When the drop campaign was last modified."),
|
||||
),
|
||||
(
|
||||
"account_link_url",
|
||||
models.URLField(blank=True, help_text="The URL to link accounts for the drop campaign."),
|
||||
),
|
||||
("description", models.TextField(blank=True, help_text="The description of the drop campaign.")),
|
||||
("details_url", models.URLField(blank=True, help_text="The URL to the details of the drop campaign.")),
|
||||
("ends_at", models.DateTimeField(help_text="When the drop campaign ends.", null=True)),
|
||||
("starts_at", models.DateTimeField(help_text="When the drop campaign starts.", null=True)),
|
||||
("end_at", models.DateTimeField(help_text="When the drop campaign ends.", null=True)),
|
||||
("start_at", models.DateTimeField(help_text="When the drop campaign starts.", null=True)),
|
||||
("image_url", models.URLField(blank=True, help_text="The URL to the image for the drop campaign.")),
|
||||
("name", models.TextField(blank=True, help_text="The name of the drop campaign.")),
|
||||
("status", models.TextField(blank=True, help_text="The status of the drop campaign.")),
|
||||
(
|
||||
"created_at",
|
||||
models.DateTimeField(
|
||||
auto_now_add=True,
|
||||
help_text="When the drop campaign was first added to the database.",
|
||||
),
|
||||
),
|
||||
(
|
||||
"modified_at",
|
||||
models.DateTimeField(auto_now=True, help_text="When the drop campaign was last modified."),
|
||||
),
|
||||
(
|
||||
"game",
|
||||
auto_prefetch.ForeignKey(
|
||||
help_text="The game associated with this campaign",
|
||||
null=True,
|
||||
on_delete=django.db.models.deletion.CASCADE,
|
||||
on_delete=django.db.models.deletion.SET_NULL,
|
||||
related_name="drop_campaigns",
|
||||
to="core.game",
|
||||
),
|
||||
),
|
||||
(
|
||||
"scraped_json",
|
||||
"owner",
|
||||
auto_prefetch.ForeignKey(
|
||||
help_text="Reference to the JSON data from the Twitch API.",
|
||||
help_text="The organization running this campaign",
|
||||
null=True,
|
||||
on_delete=django.db.models.deletion.SET_NULL,
|
||||
to="core.scrapedjson",
|
||||
related_name="drop_campaigns",
|
||||
to="core.organization",
|
||||
),
|
||||
),
|
||||
],
|
||||
options={
|
||||
"ordering": ["ends_at"],
|
||||
"ordering": ["end_at"],
|
||||
"abstract": False,
|
||||
"base_manager_name": "prefetch_manager",
|
||||
},
|
||||
managers=[
|
||||
("objects", django.db.models.manager.Manager()),
|
||||
("prefetch_manager", django.db.models.manager.Manager()),
|
||||
],
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name="Benefit",
|
||||
fields=[
|
||||
(
|
||||
"benefit_id",
|
||||
models.TextField(
|
||||
help_text="Twitch's unique ID for the benefit",
|
||||
primary_key=True,
|
||||
serialize=False,
|
||||
unique=True,
|
||||
),
|
||||
),
|
||||
(
|
||||
"twitch_created_at",
|
||||
models.DateTimeField(help_text="When the benefit was created on Twitch.", null=True),
|
||||
),
|
||||
(
|
||||
"entitlement_limit",
|
||||
models.PositiveBigIntegerField(
|
||||
default=1,
|
||||
help_text="How many times this benefit can be claimed per user",
|
||||
),
|
||||
),
|
||||
("image_asset_url", models.URLField(blank=True, help_text="The URL to the image for the benefit.")),
|
||||
("is_ios_available", models.BooleanField(help_text="If the benefit is farmable on iOS.", null=True)),
|
||||
("name", models.TextField(blank=True, help_text="Name of the benefit/reward")),
|
||||
("distribution_type", models.TextField(blank=True, help_text="The distribution type of the benefit.")),
|
||||
("created_at", models.DateTimeField(auto_now_add=True)),
|
||||
("modified_at", models.DateTimeField(auto_now=True)),
|
||||
(
|
||||
"game",
|
||||
auto_prefetch.ForeignKey(
|
||||
null=True,
|
||||
on_delete=django.db.models.deletion.SET_NULL,
|
||||
related_name="benefits",
|
||||
to="core.game",
|
||||
),
|
||||
),
|
||||
(
|
||||
"owner_organization",
|
||||
auto_prefetch.ForeignKey(
|
||||
null=True,
|
||||
on_delete=django.db.models.deletion.SET_NULL,
|
||||
related_name="benefits",
|
||||
to="core.organization",
|
||||
),
|
||||
),
|
||||
],
|
||||
options={
|
||||
"ordering": ["-twitch_created_at"],
|
||||
"abstract": False,
|
||||
"base_manager_name": "prefetch_manager",
|
||||
},
|
||||
@ -265,32 +294,45 @@ class Migration(migrations.Migration):
|
||||
name="TimeBasedDrop",
|
||||
fields=[
|
||||
(
|
||||
"created_at",
|
||||
models.DateTimeField(auto_created=True, help_text="When the drop was first added to the database."),
|
||||
"drop_id",
|
||||
models.TextField(
|
||||
help_text="The Twitch ID of the drop.",
|
||||
primary_key=True,
|
||||
serialize=False,
|
||||
unique=True,
|
||||
),
|
||||
),
|
||||
(
|
||||
"twitch_id",
|
||||
models.TextField(help_text="The Twitch ID of the drop.", primary_key=True, serialize=False),
|
||||
),
|
||||
("modified_at", models.DateTimeField(auto_now=True, help_text="When the drop was last modified.")),
|
||||
(
|
||||
"required_subs",
|
||||
models.PositiveBigIntegerField(help_text="The number of subs required for the drop.", null=True),
|
||||
),
|
||||
("ends_at", models.DateTimeField(help_text="When the drop ends.", null=True)),
|
||||
("name", models.TextField(blank=True, help_text="The name of the drop.")),
|
||||
("name", models.TextField(blank=True, help_text="Name of the time-based drop")),
|
||||
(
|
||||
"required_minutes_watched",
|
||||
models.PositiveBigIntegerField(help_text="The number of minutes watched required.", null=True),
|
||||
),
|
||||
("starts_at", models.DateTimeField(help_text="When the drop starts.", null=True)),
|
||||
("start_at", models.DateTimeField(help_text="Drop start time")),
|
||||
("end_at", models.DateTimeField(help_text="Drop end time")),
|
||||
(
|
||||
"drop_campaign",
|
||||
"created_at",
|
||||
models.DateTimeField(auto_now_add=True, help_text="When the drop was first added to the database."),
|
||||
),
|
||||
("modified_at", models.DateTimeField(auto_now=True, help_text="When the drop was last modified.")),
|
||||
(
|
||||
"benefits",
|
||||
models.ManyToManyField(
|
||||
help_text="Benefits awarded by this drop",
|
||||
related_name="time_based_drops",
|
||||
to="core.benefit",
|
||||
),
|
||||
),
|
||||
(
|
||||
"campaign",
|
||||
auto_prefetch.ForeignKey(
|
||||
help_text="The drop campaign this drop is part of.",
|
||||
null=True,
|
||||
help_text="The campaign this drop belongs to",
|
||||
on_delete=django.db.models.deletion.CASCADE,
|
||||
related_name="drops",
|
||||
related_name="time_based_drops",
|
||||
to="core.dropcampaign",
|
||||
),
|
||||
),
|
||||
@ -305,116 +347,4 @@ class Migration(migrations.Migration):
|
||||
("prefetch_manager", django.db.models.manager.Manager()),
|
||||
],
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name="Benefit",
|
||||
fields=[
|
||||
("created_at", models.DateTimeField(auto_created=True, null=True)),
|
||||
("twitch_id", models.TextField(primary_key=True, serialize=False)),
|
||||
("modified_at", models.DateTimeField(auto_now=True)),
|
||||
(
|
||||
"twitch_created_at",
|
||||
models.DateTimeField(help_text="When the benefit was created on Twitch.", null=True),
|
||||
),
|
||||
(
|
||||
"entitlement_limit",
|
||||
models.PositiveBigIntegerField(
|
||||
help_text="The number of times the benefit can be claimed.",
|
||||
null=True,
|
||||
),
|
||||
),
|
||||
("image_asset_url", models.URLField(blank=True, help_text="The URL to the image for the benefit.")),
|
||||
("is_ios_available", models.BooleanField(help_text="If the benefit is farmable on iOS.", null=True)),
|
||||
("name", models.TextField(blank=True, help_text="The name of the benefit.")),
|
||||
("distribution_type", models.TextField(blank=True, help_text="The distribution type of the benefit.")),
|
||||
(
|
||||
"game",
|
||||
auto_prefetch.ForeignKey(
|
||||
null=True,
|
||||
on_delete=django.db.models.deletion.CASCADE,
|
||||
related_name="benefits",
|
||||
to="core.game",
|
||||
),
|
||||
),
|
||||
(
|
||||
"owner_organization",
|
||||
auto_prefetch.ForeignKey(
|
||||
null=True,
|
||||
on_delete=django.db.models.deletion.CASCADE,
|
||||
related_name="benefits",
|
||||
to="core.owner",
|
||||
),
|
||||
),
|
||||
(
|
||||
"time_based_drop",
|
||||
auto_prefetch.ForeignKey(
|
||||
help_text="The time based drop this benefit is for.",
|
||||
null=True,
|
||||
on_delete=django.db.models.deletion.CASCADE,
|
||||
related_name="benefits",
|
||||
to="core.timebaseddrop",
|
||||
),
|
||||
),
|
||||
],
|
||||
options={
|
||||
"ordering": ["-twitch_created_at"],
|
||||
"abstract": False,
|
||||
"base_manager_name": "prefetch_manager",
|
||||
},
|
||||
managers=[
|
||||
("objects", django.db.models.manager.Manager()),
|
||||
("prefetch_manager", django.db.models.manager.Manager()),
|
||||
],
|
||||
),
|
||||
migrations.AddIndex(
|
||||
model_name="game",
|
||||
index=models.Index(fields=["display_name"], name="game_display_name_idx"),
|
||||
),
|
||||
migrations.AddIndex(
|
||||
model_name="game",
|
||||
index=models.Index(fields=["name"], name="game_name_idx"),
|
||||
),
|
||||
migrations.AddIndex(
|
||||
model_name="game",
|
||||
index=models.Index(fields=["created_at"], name="game_created_at_idx"),
|
||||
),
|
||||
migrations.AddIndex(
|
||||
model_name="dropcampaign",
|
||||
index=models.Index(fields=["name"], name="drop_campaign_name_idx"),
|
||||
),
|
||||
migrations.AddIndex(
|
||||
model_name="dropcampaign",
|
||||
index=models.Index(fields=["starts_at"], name="drop_campaign_starts_at_idx"),
|
||||
),
|
||||
migrations.AddIndex(
|
||||
model_name="dropcampaign",
|
||||
index=models.Index(fields=["ends_at"], name="drop_campaign_ends_at_idx"),
|
||||
),
|
||||
migrations.AddIndex(
|
||||
model_name="timebaseddrop",
|
||||
index=models.Index(fields=["name"], name="time_based_drop_name_idx"),
|
||||
),
|
||||
migrations.AddIndex(
|
||||
model_name="timebaseddrop",
|
||||
index=models.Index(fields=["starts_at"], name="time_based_drop_starts_at_idx"),
|
||||
),
|
||||
migrations.AddIndex(
|
||||
model_name="timebaseddrop",
|
||||
index=models.Index(fields=["ends_at"], name="time_based_drop_ends_at_idx"),
|
||||
),
|
||||
migrations.AddIndex(
|
||||
model_name="benefit",
|
||||
index=models.Index(fields=["name"], name="benefit_name_idx"),
|
||||
),
|
||||
migrations.AddIndex(
|
||||
model_name="benefit",
|
||||
index=models.Index(fields=["twitch_created_at"], name="benefit_twitch_created_at_idx"),
|
||||
),
|
||||
migrations.AddIndex(
|
||||
model_name="benefit",
|
||||
index=models.Index(fields=["created_at"], name="benefit_created_at_idx"),
|
||||
),
|
||||
migrations.AddIndex(
|
||||
model_name="benefit",
|
||||
index=models.Index(fields=["is_ios_available"], name="benefit_is_ios_available_idx"),
|
||||
),
|
||||
]
|
||||
|
Reference in New Issue
Block a user