blob: 885d26a7d1ec699b5f365f1ea122e38698efd4e6 (
plain)
1
2
3
4
5
6
7
8
9
|
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("migrations", "0003_third"),
]
operations = [migrations.RunSQL("SELECT * FROM migrations_author WHERE id = 1")]
|