initial commit

This commit is contained in:
2025-03-25 18:18:56 +03:00
parent b225b3312f
commit 2873b0e59a
16 changed files with 444 additions and 0 deletions

14
models.py Normal file
View File

@@ -0,0 +1,14 @@
from django.db import models
class Pixel(models.Model):
id = models.AutoField(primary_key=True)
hpid = models.IntegerField(db_index=True)
counts = models.IntegerField()
exposure = models.FloatField()
contaminated = models.BooleanField(default=False)