13 lines
542 B
MySQL
13 lines
542 B
MySQL
|
|
CREATE TABLE hrsa_salary_item_hide (
|
||
|
|
id bigint NOT NULL,
|
||
|
|
salary_sob_id bigint NOT NULL,
|
||
|
|
salary_item_id bigint NOT NULL,
|
||
|
|
is_group int NOT NULL,
|
||
|
|
item_hide bigint NULL DEFAULT 0,
|
||
|
|
creator bigint NOT NULL DEFAULT 0,
|
||
|
|
delete_type int NOT NULL DEFAULT 0,
|
||
|
|
tenant_key varchar(10),
|
||
|
|
create_time timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||
|
|
update_time timestamp NULL DEFAULT CURRENT_TIMESTAMP,
|
||
|
|
PRIMARY KEY (id)
|
||
|
|
);
|