mirror of
https://github.com/AmanTahiliani/PeerNotes.git
synced 2026-08-07 19:56:19 -04:00
Added Ranking Functionality
This commit is contained in:
23
backend/api/migrations/0006_file_points_peeruser_points.py
Normal file
23
backend/api/migrations/0006_file_points_peeruser_points.py
Normal file
@@ -0,0 +1,23 @@
|
||||
# Generated by Django 4.2.11 on 2024-04-12 20:24
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("api", "0005_file_created_at"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name="file",
|
||||
name="points",
|
||||
field=models.IntegerField(default=0),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name="peeruser",
|
||||
name="points",
|
||||
field=models.IntegerField(default=0),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user