21 lines
549 B
Python
21 lines
549 B
Python
# Generated by Django 2.2.4 on 2019-09-01 10:32
|
|
|
|
from django.db import migrations, connection
|
|
import os
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
def load_data_from_sql(apps, schema_editor):
|
|
file_path = os.path.join(os.path.dirname(__file__), 'migrate_lang.sql')
|
|
sql_statement = open(file_path).read()
|
|
with connection.cursor() as c:
|
|
c.execute(sql_statement)
|
|
|
|
dependencies = [
|
|
('location', '0011_country_languages'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RunPython(load_data_from_sql),
|
|
]
|