mirror of
https://github.com/Hopiu/django.git
synced 2026-04-04 15:20:25 +00:00
10 lines
171 B
Python
10 lines
171 B
Python
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
operations = [
|
|
migrations.RunSQL(sql="", reverse_sql=""),
|
|
]
|