sql
This commit is contained in:
parent
f9d7c05190
commit
4ccfac80f5
|
|
@ -0,0 +1,13 @@
|
|||
CREATE TABLE hrsa_acct_result_template (
|
||||
id NUMBER(38,0) primary key ,
|
||||
template_name varchar(255),
|
||||
salary_sob_id NUMBER(38,0) ,
|
||||
salary_item_ids varchar(4000),
|
||||
creator NUMBER(38,0),
|
||||
update_time DATE default sysdate,
|
||||
create_time DATE default sysdate,
|
||||
delete_type NUMBER,
|
||||
tenant_key varchar(20)
|
||||
);
|
||||
/
|
||||
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
CREATE TABLE hrsa_acct_result_template (
|
||||
id NUMBER(38,0) primary key ,
|
||||
template_name varchar(255),
|
||||
salary_sob_id NUMBER(38,0) ,
|
||||
salary_item_ids varchar(4000),
|
||||
creator NUMBER(38,0),
|
||||
update_time DATE default sysdate,
|
||||
create_time DATE default sysdate,
|
||||
delete_type NUMBER,
|
||||
tenant_key varchar(20)
|
||||
);
|
||||
/
|
||||
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
CREATE TABLE hrsa_acct_result_template (
|
||||
id NUMBER(38,0) primary key ,
|
||||
template_name varchar(255),
|
||||
salary_sob_id NUMBER(38,0) ,
|
||||
salary_item_ids varchar(4000),
|
||||
creator NUMBER(38,0),
|
||||
update_time DATE default sysdate,
|
||||
create_time DATE default sysdate,
|
||||
delete_type NUMBER,
|
||||
tenant_key varchar(20)
|
||||
);
|
||||
/
|
||||
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
CREATE table hrsa_acct_result_template (
|
||||
id bigint NOT NULL,
|
||||
template_name varchar(255) NULL DEFAULT NULL,
|
||||
salary_sob_id bigint NULL DEFAULT NULL ,
|
||||
salary_item_ids varchar(4000) NULL DEFAULT NULL ,
|
||||
creator bigint NULL DEFAULT NULL,
|
||||
update_time datetime NULL DEFAULT NULL,
|
||||
create_time datetime NULL DEFAULT NULL,
|
||||
delete_type int NULL DEFAULT NULL,
|
||||
tenant_key varchar(20) NULL DEFAULT NULL,
|
||||
PRIMARY KEY (id)
|
||||
);
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
CREATE TABLE hrsa_acct_result_template (
|
||||
id NUMBER(38,0) primary key ,
|
||||
template_name varchar(255),
|
||||
salary_sob_id NUMBER(38,0) ,
|
||||
salary_item_ids varchar(4000),
|
||||
creator NUMBER(38,0),
|
||||
update_time DATE default sysdate,
|
||||
create_time DATE default sysdate,
|
||||
delete_type NUMBER,
|
||||
tenant_key varchar(20)
|
||||
)
|
||||
/
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
CREATE table hrsa_acct_result_template (
|
||||
id bigint primary key,
|
||||
template_name varchar(255),
|
||||
salary_sob_id bigint ,
|
||||
salary_item_ids varchar(4000) ,
|
||||
creator bigint,
|
||||
update_time timestamp default now(),
|
||||
create_time timestamp default now(),
|
||||
delete_type int default 0,
|
||||
tenant_key varchar(10)
|
||||
);
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
CREATE TABLE hrsa_acct_result_template (
|
||||
id bigint NOT NULL,
|
||||
template_name varchar(255) NULL DEFAULT NULL,
|
||||
salary_sob_id bigint NULL DEFAULT NULL ,
|
||||
salary_item_ids varchar(4000) NULL DEFAULT NULL ,
|
||||
creator bigint NULL DEFAULT NULL,
|
||||
update_time datetime NULL DEFAULT NULL,
|
||||
create_time datetime NULL DEFAULT NULL,
|
||||
delete_type int NULL DEFAULT NULL,
|
||||
tenant_key varchar(20) NULL DEFAULT NULL,
|
||||
PRIMARY KEY (id)
|
||||
)
|
||||
GO
|
||||
Loading…
Reference in New Issue