weaver-hrm-salary/resource/sqlupgrade/PG/sql202406170103.sql

13 lines
441 B
MySQL
Raw Normal View History

2024-06-17 10:26:17 +08:00
CREATE TABLE hrsa_sob_tax_rule (
id bigserial NOT NULL,
salary_sob_id bigint ,
income_category varchar(100) ,
tax_index varchar(100) ,
salary_item_id bigint ,
creator bigint NOT NULL DEFAULT 0 ,
create_time timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ,
update_time timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ,
delete_type int NOT NULL DEFAULT 0 ,
tenant_key varchar(10) NOT NULL DEFAULT '' ,
PRIMARY KEY (id)
);