Skip to content
This repository was archived by the owner on Aug 29, 2023. It is now read-only.

Commit 1cca938

Browse files
Some changes made to the game models to handle some bugs
1 parent e100cc9 commit 1cca938

16 files changed

+88
-5
lines changed
0 Bytes
Binary file not shown.
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Generated by Django 3.2.18 on 2023-06-25 06:59
2+
3+
import datetime
4+
from django.db import migrations, models
5+
6+
7+
class Migration(migrations.Migration):
8+
9+
dependencies = [
10+
('Profile', '0016_auto_20230619_0211'),
11+
]
12+
13+
operations = [
14+
migrations.AlterField(
15+
model_name='recentearnings',
16+
name='created_at',
17+
field=models.DateField(default=datetime.date(2023, 6, 25)),
18+
),
19+
migrations.AlterField(
20+
model_name='referral',
21+
name='signed_up_at',
22+
field=models.DateField(default=datetime.date(2023, 6, 25)),
23+
),
24+
migrations.AlterField(
25+
model_name='transaction',
26+
name='created_at',
27+
field=models.DateField(default=datetime.date(2023, 6, 25)),
28+
),
29+
]
Binary file not shown.
196 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
-5 Bytes
Binary file not shown.
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Generated by Django 3.2.18 on 2023-06-25 07:05
2+
3+
import django.core.validators
4+
from django.db import migrations, models
5+
6+
7+
class Migration(migrations.Migration):
8+
9+
dependencies = [
10+
('rewards', '0004_auto_20230619_0211'),
11+
]
12+
13+
operations = [
14+
migrations.AlterField(
15+
model_name='monsterhunter',
16+
name='turn_available',
17+
field=models.PositiveIntegerField(default=1, validators=[django.core.validators.MinValueValidator(0), django.core.validators.MaxValueValidator(5)]),
18+
),
19+
migrations.AlterField(
20+
model_name='spinwheel',
21+
name='spin_available',
22+
field=models.IntegerField(default=1),
23+
),
24+
migrations.AlterField(
25+
model_name='ticktactoe',
26+
name='turn_available',
27+
field=models.PositiveIntegerField(default=10, validators=[django.core.validators.MinValueValidator(0), django.core.validators.MaxValueValidator(20)]),
28+
),
29+
]
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Generated by Django 3.2.18 on 2023-06-25 07:26
2+
3+
import django.core.validators
4+
from django.db import migrations, models
5+
6+
7+
class Migration(migrations.Migration):
8+
9+
dependencies = [
10+
('rewards', '0005_auto_20230625_1205'),
11+
]
12+
13+
operations = [
14+
migrations.AlterField(
15+
model_name='quiz',
16+
name='turn_available',
17+
field=models.PositiveIntegerField(default=1, validators=[django.core.validators.MinValueValidator(0), django.core.validators.MaxValueValidator(5)]),
18+
),
19+
migrations.AlterField(
20+
model_name='spinwheel',
21+
name='spin_available',
22+
field=models.PositiveIntegerField(default=1, validators=[django.core.validators.MinValueValidator(0), django.core.validators.MaxValueValidator(5)]),
23+
),
24+
]
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)