All Downloads are FREE. Search and download functionalities are using the official Maven repository.

plugin.sql.erp.R_TEAM_EMPLOYEE.sql Maven / Gradle / Ivy

There is a newer version: 0.9.0
Show newest version
-- liquibase formatted sql

-- changeset Lang:h-team-employee-1
-- 关联表:R_TEAM_EMPLOYEE
DROP TABLE IF EXISTS R_TEAM_EMPLOYEE;
CREATE TABLE IF NOT EXISTS R_TEAM_EMPLOYEE
(
    `TEAM_ID`     VARCHAR(36) COMMENT '「teamId」- 组的ID',
    `EMPLOYEE_ID` VARCHAR(36) COMMENT '「employeeId」- 员工ID',
    `COMMENT`     TEXT COMMENT '「comment」- 关系备注',
    PRIMARY KEY
        (
         `TEAM_ID`,
         `EMPLOYEE_ID`
            ) USING BTREE
);




© 2015 - 2025 Weber Informatics LLC | Privacy Policy