mirror of
https://github.com/AmanTahiliani/PeerNotes.git
synced 2026-08-07 11:55:12 -04:00
24 lines
527 B
Python
24 lines
527 B
Python
# 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),
|
|
),
|
|
]
|