initial commit
This commit is contained in:
14
models.py
Normal file
14
models.py
Normal 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)
|
||||
|
Reference in New Issue
Block a user