mirror of
https://github.com/Hopiu/django.git
synced 2026-03-21 08:20:30 +00:00
8 lines
176 B
Python
8 lines
176 B
Python
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
replaces = [
|
|
("migrations", "0001_initial"),
|
|
("migrations", "0002_second"),
|
|
]
|