Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
J
jumpserver
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
jumpserver
Commits
6004ef3f
Commit
6004ef3f
authored
Mar 04, 2019
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 修改settings
parent
e76392a1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
0002_migrate_data.py
apps/settings/migrations/0002_migrate_data.py
+2
-0
No files found.
apps/settings/migrations/0002_migrate_data.py
View file @
6004ef3f
...
@@ -10,8 +10,10 @@ class Migration(migrations.Migration):
...
@@ -10,8 +10,10 @@ class Migration(migrations.Migration):
]
]
sql
=
"INSERT INTO setting(name, value, category, encrypted, enabled, comment) "
\
sql
=
"INSERT INTO setting(name, value, category, encrypted, enabled, comment) "
\
"SELECT name, value, category, encrypted, enabled, comment from settings"
"SELECT name, value, category, encrypted, enabled, comment from settings"
rename_sql
=
"RENAME TABLE settings TO settings_bak"
settings_table_exist
=
'settings'
in
connection
.
introspection
.
table_names
()
settings_table_exist
=
'settings'
in
connection
.
introspection
.
table_names
()
operations
=
[]
operations
=
[]
if
settings_table_exist
:
if
settings_table_exist
:
operations
.
append
(
migrations
.
RunSQL
(
sql
))
operations
.
append
(
migrations
.
RunSQL
(
sql
))
operations
.
append
(
migrations
.
RunSQL
(
rename_sql
))
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment