gold eggs backend
Some checks failed
Build and Push to Docker Hub / build-test-push (push) Failing after 1m55s
Some checks failed
Build and Push to Docker Hub / build-test-push (push) Failing after 1m55s
This commit is contained in:
14
core/apps/eggs/models/daily_cost.py
Normal file
14
core/apps/eggs/models/daily_cost.py
Normal file
@@ -0,0 +1,14 @@
|
||||
from django.db import models
|
||||
|
||||
from core.http.models import AbstractBaseModel
|
||||
|
||||
|
||||
class DailyCost(AbstractBaseModel):
|
||||
first_cost = models.DecimalField(max_digits=40, decimal_places=2)
|
||||
second_cost = models.DecimalField(max_digits=40, decimal_places=2)
|
||||
third_cost = models.DecimalField(max_digits=40, decimal_places=2)
|
||||
|
||||
class Meta:
|
||||
verbose_name = "Daily Cost"
|
||||
verbose_name_plural = "Daily Costs"
|
||||
db_table = "daily_costs"
|
||||
Reference in New Issue
Block a user