Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
T
test
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
邬友楠
test
Commits
816b9d8c
Commit
816b9d8c
authored
Jan 13, 2020
by
雍欢
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sql脚本添加创建表tmp_sa_i18nproperties的语句
parent
084b08b5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
40 additions
and
1 deletion
+40
-1
uasp.mysql.sql
db/uasp.mysql.sql
+12
-1
uasp.postgresql.sql
db/uasp.postgresql.sql
+13
-0
uasp.sqlserver.sql
db/uasp.sqlserver.sql
+15
-0
No files found.
db/uasp.mysql.sql
View file @
816b9d8c
SET FOREIGN_KEY_CHECKS = 0;
SET FOREIGN_KEY_CHECKS = 0;
create table tmp_sa_i18nproperties
( tmp_id varchar(32 ) not null,
batch_number varchar(64 ),
status varchar(64 ),
message varchar(512 ),
code varchar(128 ),
value1 varchar(512 ),
value2 varchar(512 ),
value3 varchar(512 ),
value4 varchar(512 ),
value5 varchar(512 )
);
-- ----------------------------
-- ----------------------------
-- Table structure for act_ge_bytearray
-- Table structure for act_ge_bytearray
-- ----------------------------
-- ----------------------------
db/uasp.postgresql.sql
View file @
816b9d8c
...
@@ -91,6 +91,19 @@ SET default_tablespace = '';
...
@@ -91,6 +91,19 @@ SET default_tablespace = '';
SET default_with_oids = false;
SET default_with_oids = false;
create table tmp_sa_i18nproperties
( tmp_id varchar(32 ) not null,
batch_number varchar(64 ),
status varchar(64 ),
message varchar(512 ),
code varchar(128 ),
value1 varchar(512 ),
value2 varchar(512 ),
value3 varchar(512 ),
value4 varchar(512 ),
value5 varchar(512 )
)
--
--
-- Name: act_ge_bytearray; Type: TABLE; Schema: public; Owner: postgres
-- Name: act_ge_bytearray; Type: TABLE; Schema: public; Owner: postgres
--
--
db/uasp.sqlserver.sql
View file @
816b9d8c
...
@@ -16,6 +16,21 @@
...
@@ -16,6 +16,21 @@
*/
*/
CREATE
TABLE
TMP_SA_I18NPROPERTIES
(
TMP_ID
VARCHAR
(
32
)
NOT
NULL
,
BATCH_NUMBER
VARCHAR
(
64
),
STATUS
VARCHAR
(
64
),
MESSAGE
VARCHAR
(
512
),
CODE
VARCHAR
(
128
),
VALUE1
VARCHAR
(
512
),
VALUE2
VARCHAR
(
512
),
VALUE3
VARCHAR
(
512
),
VALUE4
VARCHAR
(
512
),
VALUE5
VARCHAR
(
512
)
)
GO
-- ----------------------------
-- ----------------------------
-- Table structure for ACT_GE_BYTEARRAY
-- Table structure for ACT_GE_BYTEARRAY
-- ----------------------------
-- ----------------------------
...
...
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