Skip to content

Commit

Permalink
delete old and unused ratings mode
Browse files Browse the repository at this point in the history
  • Loading branch information
goapunk authored and m4ra committed Oct 24, 2024
1 parent 0ed808d commit 0998e4e
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions euth/contrib/migrations/0002_delete_rating_model.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by Django 3.2.20 on 2024-10-23 13:32

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
('contrib', '0001_delete_a4_models'),
]

operations = [
migrations.RunSQL(
sql=[
"DROP TABLE IF EXISTS euth_ratings_rating",
],
reverse_sql=migrations.RunSQL.noop,
)
]

0 comments on commit 0998e4e

Please sign in to comment.