mirror of
https://github.com/Hopiu/django.git
synced 2026-05-24 06:43:52 +00:00
16 lines
280 B
Python
16 lines
280 B
Python
|
|
from django.db import migrations
|
||
|
|
|
||
|
|
|
||
|
|
def forwards(apps, schema_editor):
|
||
|
|
pass
|
||
|
|
|
||
|
|
|
||
|
|
class Migration(migrations.Migration):
|
||
|
|
dependencies = [
|
||
|
|
("migrations", "0001_initial"),
|
||
|
|
]
|
||
|
|
|
||
|
|
operations = [
|
||
|
|
migrations.RunPython(forwards, migrations.RunPython.noop),
|
||
|
|
]
|