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:
29
core/apps/eggs/migrations/0073_dailycost.py
Normal file
29
core/apps/eggs/migrations/0073_dailycost.py
Normal file
@@ -0,0 +1,29 @@
|
||||
# Generated by Django 5.0.8 on 2024-09-11 04:36
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('eggs', '0072_alter_notification_user'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='DailyCost',
|
||||
fields=[
|
||||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('created_at', models.DateTimeField(auto_now_add=True)),
|
||||
('updated_at', models.DateTimeField(auto_now=True)),
|
||||
('first_cost', models.DecimalField(decimal_places=2, max_digits=40)),
|
||||
('second_cost', models.DecimalField(decimal_places=2, max_digits=40)),
|
||||
('third_cost', models.DecimalField(decimal_places=2, max_digits=40)),
|
||||
],
|
||||
options={
|
||||
'verbose_name': 'Daily Cost',
|
||||
'verbose_name_plural': 'Daily Costs',
|
||||
'db_table': 'daily_costs',
|
||||
},
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user