17 lines
435 B
Python
17 lines
435 B
Python
# Generated manually to update ordering from ['-created_at'] to ['id']
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('assetapp', '0005_asset_asset_value'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name='asset',
|
|
options={'ordering': ['id'], 'verbose_name': '硬件资产', 'verbose_name_plural': '硬件资产'},
|
|
),
|
|
]
|