19 lines
459 B
Python
19 lines
459 B
Python
# Generated by Django 5.2.15 on 2026-07-18 06:44
|
|||
|
|
|
||
|
|
from django.db import migrations, models
|
||
|
|
|
||
|
|
|
||
|
|
class Migration(migrations.Migration):
|
||
|
|
|
||
|
|
dependencies = [
|
||
|
|
('billing', '0008_alter_callrecord_operation_type_and_more'),
|
||
|
|
]
|
||
|
|
|
||
|
|
operations = [
|
||
|
|
migrations.AlterField(
|
||
|
|
model_name='signupbonusgrant',
|
||
|
|
name='points_granted',
|
||
|
|
field=models.BigIntegerField(default=10, verbose_name='赠送点数'),
|
||
|
|
),
|
||
|
|
]
|