mirror of
https://github.com/QingdaoU/OnlineJudge.git
synced 2025-01-16 09:16:12 +00:00
19 lines
405 B
Python
19 lines
405 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.3 on 2018-05-01 04:36
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('options', '0002_auto_20180501_0436'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RunSQL("""
|
|
DELETE FROM options_sysoptions WHERE key = 'languages';
|
|
""")
|
|
]
|