forked from STOCD/OSCR-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Try and Improve Performance Improvemnets after Damage Out Table was A…
…dded. (STOCD#67) * Updated Ladder Entries to better indicate rank. * Minor Backend Changes to support new OSCR + Ladder Rankings * Updated Requirements * Fixed NTTX Fixture * Replaced Build Detection with Strongest Ability * Updated Combat Log UI Page * Add Link Preview * And again * Fixup Meta * Try and optimize the combatlog metadata.
- Loading branch information
Showing
6 changed files
with
64 additions
and
8 deletions.
There are no files selected for viewing
33 changes: 33 additions & 0 deletions
33
combatlog/migrations/0003_metadata_damage_in_metadata_damage_out_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Generated by Django 4.2.9 on 2024-08-12 19:53 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('combatlog', '0002_combatlog_youtube'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='metadata', | ||
name='damage_in', | ||
field=models.JSONField(default=None, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='metadata', | ||
name='damage_out', | ||
field=models.JSONField(default=None, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='metadata', | ||
name='heal_in', | ||
field=models.JSONField(default=None, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='metadata', | ||
name='heal_out', | ||
field=models.JSONField(default=None, null=True), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters