Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Sign in
Toggle navigation
R
red-ci-cd
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
red-group-test
red-ci-cd
Commits
73a8d436
Commit
73a8d436
authored
Sep 04, 2019
by
Gladys Forte
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
change request models
parent
be6d3606
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
526 additions
and
1 deletion
+526
-1
app/entities/enums.py
app/entities/enums.py
+10
-0
app/entities/migrations/0004_auto_20190904_1608.py
app/entities/migrations/0004_auto_20190904_1608.py
+211
-0
app/entities/migrations/0005_auto_20190904_1635.py
app/entities/migrations/0005_auto_20190904_1635.py
+28
-0
app/entities/models.py
app/entities/models.py
+277
-1
No files found.
app/entities/enums.py
View file @
73a8d436
...
...
@@ -30,6 +30,16 @@ class GenerateCode(Enum):
DEPARTMENT
=
'DEPARTMENT'
USER
=
'USER'
NOTIFICATION
=
'NOTIF'
TEMPLATE
=
'TMP'
TMP_APPROVER
=
'TMPAPR'
TMP_STAKE
=
'TMPSTK'
TMP_ATTACH
=
'TMPATCH'
TMP_DETAIL
=
'TMPDETAIL'
FORM
=
'FRM'
FORM_APPROVER
=
'FRMAPR'
FORM_STAKE
=
'FRMSTK'
FORM_ATTACH
=
'FRMATCH'
FORM_DETAIL
=
'FRMDETAIL'
'''
...
...
app/entities/migrations/0004_auto_20190904_1608.py
0 → 100644
View file @
73a8d436
This diff is collapsed.
Click to expand it.
app/entities/migrations/0005_auto_20190904_1635.py
0 → 100644
View file @
73a8d436
# Generated by Django 2.2 on 2019-09-04 16:35
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'entities'
,
'0004_auto_20190904_1608'
),
]
operations
=
[
migrations
.
AddField
(
model_name
=
'changerequesttemplateapprovers'
,
name
=
'action'
,
field
=
models
.
CharField
(
blank
=
True
,
max_length
=
50
,
null
=
True
),
),
migrations
.
AddField
(
model_name
=
'changerequesttemplateapprovers'
,
name
=
'date_sent'
,
field
=
models
.
DateTimeField
(
blank
=
True
,
null
=
True
),
),
migrations
.
AddField
(
model_name
=
'module'
,
name
=
'component'
,
field
=
models
.
CharField
(
blank
=
True
,
max_length
=
255
,
null
=
True
),
),
]
app/entities/models.py
View file @
73a8d436
This diff is collapsed.
Click to expand it.
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