Fix tortoise ssl config
This commit is contained in:
parent
6504384879
commit
1263c6f735
@ -4,6 +4,10 @@ ChangeLog
|
|||||||
0.2
|
0.2
|
||||||
===
|
===
|
||||||
|
|
||||||
|
0.2.3
|
||||||
|
-----
|
||||||
|
- Fix tortoise ssl config.
|
||||||
|
|
||||||
0.2.2
|
0.2.2
|
||||||
-----
|
-----
|
||||||
- Fix postgres drop fk.
|
- Fix postgres drop fk.
|
||||||
|
@ -1 +1 @@
|
|||||||
__version__ = "0.2.2"
|
__version__ = "0.2.3"
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
import json
|
import json
|
||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
from copy import deepcopy
|
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
from importlib import import_module
|
from importlib import import_module
|
||||||
from typing import Dict, List, Tuple, Type
|
from typing import Dict, List, Tuple, Type
|
||||||
@ -178,14 +177,13 @@ class Migrate:
|
|||||||
:param location:
|
:param location:
|
||||||
:return:
|
:return:
|
||||||
"""
|
"""
|
||||||
temp_config = deepcopy(config)
|
|
||||||
path = os.path.join(location, app, cls.old_models)
|
path = os.path.join(location, app, cls.old_models)
|
||||||
path = path.replace(os.sep, ".").lstrip(".")
|
path = path.replace(os.sep, ".").lstrip(".")
|
||||||
temp_config["apps"][cls.diff_app] = {
|
config["apps"][cls.diff_app] = {
|
||||||
"models": [path],
|
"models": [path],
|
||||||
"default_connection": config.get("apps").get(app).get("default_connection", "default"),
|
"default_connection": config.get("apps").get(app).get("default_connection", "default"),
|
||||||
}
|
}
|
||||||
return temp_config
|
return config
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def write_old_models(cls, config: dict, app: str, location: str):
|
def write_old_models(cls, config: dict, app: str, location: str):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user