55 lines
1.7 KiB
Python
55 lines
1.7 KiB
Python
# Generated by Django 4.2.27 on 2026-04-10 18:05
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("backend", "0002_zuzhangritongji_shangjiaritongji_and_more"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name="TixianRiTongji",
|
|
fields=[
|
|
(
|
|
"id",
|
|
models.BigAutoField(
|
|
auto_created=True,
|
|
primary_key=True,
|
|
serialize=False,
|
|
verbose_name="ID",
|
|
),
|
|
),
|
|
("riqi", models.DateField(db_index=True, verbose_name="日期")),
|
|
(
|
|
"leixing",
|
|
models.IntegerField(
|
|
choices=[(1, "打手"), (2, "管事"), (3, "组长")],
|
|
verbose_name="用户类型",
|
|
),
|
|
),
|
|
(
|
|
"total_amount",
|
|
models.DecimalField(
|
|
decimal_places=2,
|
|
default=0.0,
|
|
max_digits=12,
|
|
verbose_name="当天提现总额(元)",
|
|
),
|
|
),
|
|
],
|
|
options={
|
|
"verbose_name": "每日提现统计",
|
|
"db_table": "tixian_ri_tongji",
|
|
"indexes": [
|
|
models.Index(
|
|
fields=["riqi", "leixing"], name="tixian_ri_t_riqi_c18bb2_idx"
|
|
)
|
|
],
|
|
"unique_together": {("riqi", "leixing")},
|
|
},
|
|
),
|
|
]
|