19 lines
408 B
Python
19 lines
408 B
Python
|
|
# Generated by Django 6.0 on 2026-05-22 05:27
|
||
|
|
|
||
|
|
from django.db import migrations, models
|
||
|
|
|
||
|
|
|
||
|
|
class Migration(migrations.Migration):
|
||
|
|
|
||
|
|
dependencies = [
|
||
|
|
('applets', '0011_seed_wallet_shop_applet'),
|
||
|
|
]
|
||
|
|
|
||
|
|
operations = [
|
||
|
|
migrations.AddField(
|
||
|
|
model_name='applet',
|
||
|
|
name='display_order',
|
||
|
|
field=models.PositiveSmallIntegerField(default=100),
|
||
|
|
),
|
||
|
|
]
|