mirror of
https://github.com/QingdaoU/OnlineJudge.git
synced 2024-12-28 16:12:13 +00:00
add sysoptions languages migrations
This commit is contained in:
parent
20dd6237b6
commit
abfe99a8bf
18
options/migrations/0003_migrate_languages_options.py
Normal file
18
options/migrations/0003_migrate_languages_options.py
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
# -*- 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';
|
||||||
|
""")
|
||||||
|
]
|
Loading…
Reference in New Issue
Block a user