Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
aserver
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
15所TongWeb
aserver
Commits
5019317c
Commit
5019317c
authored
Sep 09, 2020
by
成亚卿
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加任务日志表
parent
13b440c6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
1 deletion
+20
-1
DM_UpdateSQL.xml
src/main/resources/DBUpdate/DM_UpdateSQL.xml
+20
-1
No files found.
src/main/resources/DBUpdate/DM_UpdateSQL.xml
View file @
5019317c
...
...
@@ -1951,7 +1951,26 @@
alter table "AS_FILE" modify "size" NUMBER(13, 0);
</sql>
</version>
<version
edition=
"78"
description=
"添加任务日志表"
>
<sql
creator=
"ChengYaqing"
createDate=
"20200909"
note=
"设置菜单排序默认值"
>
create table AS_TASK_PERFORMANCE (
ID number(9,0) primary key,
EXECUTOR varchar2(100),
EXECUTION_TIME TIMESTAMP(6),
TASK_ID number(9,0),
TASK_NAME TIMESTAMP(6),
EXPEND varchar2(100),
TOTAL number(9,0),
SUCCESS number(9,0),
FAIL number(9,0),
PATH varchar2(250),
TASK_TYPE varchar2(50)
);
CREATE SEQUENCE
"SEQ_AS_TASK_LOG" INCREMENT BY 1 START WITH 1 MAXVALUE
9999999999999999 MINVALUE 1 CACHE 20;
</sql>
</version>
...
...
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