This repository has been archived by the owner on Oct 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add overwrite_check_percentage field to BlossomUser
- Loading branch information
1 parent
bd410a6
commit fd73ebf
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
authentication/migrations/0006_blossomuser_overwrite_check_percentage.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,18 @@ | ||
# Generated by Django 3.2.10 on 2022-01-06 20:01 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("authentication", "0005_blossomuser_is_bot"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="blossomuser", | ||
name="overwrite_check_percentage", | ||
field=models.FloatField(blank=True, 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