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
573f9a45
Commit
573f9a45
authored
Aug 06, 2019
by
BaiJiangJie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Feature] 应用管理:数据库应用添加迁移文件
parent
272ea0d5
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
88 additions
and
0 deletions
+88
-0
0002_auto_20190806_1501.py
apps/applications/migrations/0002_auto_20190806_1501.py
+43
-0
0008_auto_20190806_1501.py
apps/perms/migrations/0008_auto_20190806_1501.py
+45
-0
No files found.
apps/applications/migrations/0002_auto_20190806_1501.py
0 → 100644
View file @
573f9a45
# Generated by Django 2.1.7 on 2019-08-06 07:01
import
common.fields.model
import
django.core.validators
from
django.db
import
migrations
,
models
import
uuid
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'applications'
,
'0001_initial'
),
]
operations
=
[
migrations
.
CreateModel
(
name
=
'Database'
,
fields
=
[
(
'org_id'
,
models
.
CharField
(
blank
=
True
,
db_index
=
True
,
default
=
''
,
max_length
=
36
,
verbose_name
=
'Organization'
)),
(
'id'
,
models
.
UUIDField
(
default
=
uuid
.
uuid4
,
primary_key
=
True
,
serialize
=
False
)),
(
'name'
,
models
.
CharField
(
max_length
=
128
,
verbose_name
=
'Name'
)),
(
'login_mode'
,
models
.
CharField
(
choices
=
[(
'auto'
,
'Automatic login'
),
(
'manual'
,
'Manually login'
)],
default
=
'auto'
,
max_length
=
10
,
verbose_name
=
'Login mode'
)),
(
'type'
,
models
.
CharField
(
choices
=
[(
'mysql'
,
'MySQL'
)],
default
=
'mysql'
,
max_length
=
10
,
verbose_name
=
'Type'
)),
(
'host'
,
models
.
CharField
(
max_length
=
128
,
verbose_name
=
'Host'
)),
(
'port'
,
models
.
IntegerField
(
default
=
3306
,
verbose_name
=
'Port'
)),
(
'user'
,
models
.
CharField
(
blank
=
True
,
max_length
=
32
,
null
=
True
,
validators
=
[
django
.
core
.
validators
.
RegexValidator
(
'^[0-9a-zA-Z_@
\\
-
\\
.]*$'
,
'Special char not allowed'
)],
verbose_name
=
'User'
)),
(
'password'
,
common
.
fields
.
model
.
EncryptCharField
(
blank
=
True
,
max_length
=
256
,
null
=
True
,
verbose_name
=
'Password'
)),
(
'database'
,
models
.
CharField
(
blank
=
True
,
max_length
=
128
,
null
=
True
,
verbose_name
=
'Database'
)),
(
'comment'
,
models
.
TextField
(
blank
=
True
,
verbose_name
=
'Comment'
)),
(
'created_by'
,
models
.
CharField
(
max_length
=
128
,
null
=
True
,
verbose_name
=
'Created by'
)),
(
'date_created'
,
models
.
DateTimeField
(
auto_now_add
=
True
,
verbose_name
=
'Date Created'
)),
(
'date_updated'
,
models
.
DateTimeField
(
auto_now
=
True
,
verbose_name
=
'Date updated'
)),
],
options
=
{
'verbose_name'
:
'Database'
,
'ordering'
:
(
'name'
,),
},
),
migrations
.
AlterUniqueTogether
(
name
=
'database'
,
unique_together
=
{(
'org_id'
,
'name'
)},
),
]
apps/perms/migrations/0008_auto_20190806_1501.py
0 → 100644
View file @
573f9a45
# Generated by Django 2.1.7 on 2019-08-06 07:01
import
common.utils.django
from
django.conf
import
settings
from
django.db
import
migrations
,
models
import
django.utils.timezone
import
uuid
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'applications'
,
'0002_auto_20190806_1501'
),
(
'users'
,
'0023_auto_20190724_1525'
),
migrations
.
swappable_dependency
(
settings
.
AUTH_USER_MODEL
),
(
'perms'
,
'0007_remove_assetpermission_actions'
),
]
operations
=
[
migrations
.
CreateModel
(
name
=
'DatabasePermission'
,
fields
=
[
(
'org_id'
,
models
.
CharField
(
blank
=
True
,
db_index
=
True
,
default
=
''
,
max_length
=
36
,
verbose_name
=
'Organization'
)),
(
'id'
,
models
.
UUIDField
(
default
=
uuid
.
uuid4
,
primary_key
=
True
,
serialize
=
False
)),
(
'name'
,
models
.
CharField
(
max_length
=
128
,
verbose_name
=
'Name'
)),
(
'is_active'
,
models
.
BooleanField
(
default
=
True
,
verbose_name
=
'Active'
)),
(
'date_start'
,
models
.
DateTimeField
(
db_index
=
True
,
default
=
django
.
utils
.
timezone
.
now
,
verbose_name
=
'Date start'
)),
(
'date_expired'
,
models
.
DateTimeField
(
db_index
=
True
,
default
=
common
.
utils
.
django
.
date_expired_default
,
verbose_name
=
'Date expired'
)),
(
'created_by'
,
models
.
CharField
(
blank
=
True
,
max_length
=
128
,
verbose_name
=
'Created by'
)),
(
'date_created'
,
models
.
DateTimeField
(
auto_now_add
=
True
,
verbose_name
=
'Date created'
)),
(
'comment'
,
models
.
TextField
(
blank
=
True
,
verbose_name
=
'Comment'
)),
(
'databases'
,
models
.
ManyToManyField
(
blank
=
True
,
related_name
=
'granted_by_permissions'
,
to
=
'applications.Database'
,
verbose_name
=
'Database'
)),
(
'user_groups'
,
models
.
ManyToManyField
(
blank
=
True
,
to
=
'users.UserGroup'
,
verbose_name
=
'User group'
)),
(
'users'
,
models
.
ManyToManyField
(
blank
=
True
,
to
=
settings
.
AUTH_USER_MODEL
,
verbose_name
=
'User'
)),
],
options
=
{
'verbose_name'
:
'Database permission'
,
'ordering'
:
(
'name'
,),
},
),
migrations
.
AlterUniqueTogether
(
name
=
'databasepermission'
,
unique_together
=
{(
'org_id'
,
'name'
)},
),
]
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