15 lines
472 B
MySQL
15 lines
472 B
MySQL
|
--liquibase formatted sql
|
||
|
|
||
|
-- ============================================================================
|
||
|
--changeset hs-unixuser-MAIN-TABLE:1 endDelimiter:--//
|
||
|
-- ----------------------------------------------------------------------------
|
||
|
|
||
|
create table if not exists UnixUser
|
||
|
(
|
||
|
uuid uuid unique references RbacObject (uuid),
|
||
|
packageUuid uuid references package (uuid),
|
||
|
name character varying(32),
|
||
|
description character varying(96)
|
||
|
);
|
||
|
--//
|