Files
OnlineJudge/reaction/migrations/0002_delete_comment.py
2026-08-06 03:55:50 -06:00

15 lines
308 B
Python

from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("reaction", "0001_initial"),
]
operations = [
migrations.RunSQL(
sql="DROP TABLE IF EXISTS comment CASCADE;",
reverse_sql=migrations.RunSQL.noop,
),
]