12 lines
241 B
Python
12 lines
241 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
replaces = [
|
|
("migrations", "0001_initial"),
|
|
("migrations", "0002_second"),
|
|
]
|