21 lines
471 B
Python
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=[],
|
|
),
|
|
] |