Files
api/app/migrations/0003_delete_news.py
anhduy-tech c00b79f7c4 changes
2026-03-24 11:30:32 +07:00

21 lines
471 B
Python

# app/migrations/0003_delete_news.py
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('app', '0002_cloud_instance_customer_wallet_datacenter_and_more'),
]
operations = [
migrations.SeparateDatabaseAndState(
state_operations=[
migrations.DeleteModel(
name='News',
),
],
database_operations=[],
),
]