mirror of https://github.com/django/django.git
9 lines
176 B
Python
9 lines
176 B
Python
|
from django.db import migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
replaces = [
|
||
|
("migrations", "0001_initial"),
|
||
|
("migrations", "0002_second"),
|
||
|
]
|