refactor(reaction): 下线 comment app

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
2026-08-06 03:51:54 -06:00
parent 700488a36b
commit b679f8eb06
17 changed files with 15 additions and 272 deletions

View File

@@ -0,0 +1,14 @@
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,
),
]