1
0
mirror of https://github.com/django/django.git synced 2025-02-04 14:37:19 +00:00

13 lines
240 B
Python
Raw Normal View History

from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("migrations", "0003_third"),
]
operations = [
migrations.RunSQL('SELECT * FROM migrations_author WHERE id = 1')
]