weaver-hrm-salary/resource/sqlupgrade/SQLServer/sql202210170203.sql

31 lines
506 B
MySQL
Raw Normal View History

2023-06-26 15:48:25 +08:00
CREATE TABLE [hrsa_insurance_base_info] (
[id] bigint NOT NULL,
[employee_id] bigint NOT NULL,
[payment_organization] int NULL,
[social_archives_id] bigint NULL,
[fund_archives_id] bigint NULL,
[other_archives_id] bigint NULL,
[tenant_key] varchar(10) COLLATE Chinese_PRC_CI_AS NOT NULL,
[creator] int NOT NULL,
[delete_type] int NOT NULL,
[create_time] datetime NOT NULL,
[update_time] datetime NOT NULL,
[run_status] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL,
PRIMARY KEY ([id])
)
GO