2022-08-14 16:44:26 +02:00
|
|
|
--liquibase formatted sql
|
|
|
|
|
|
|
|
-- ============================================================================
|
2022-08-31 14:57:15 +02:00
|
|
|
--changeset test-domain-MAIN-TABLE:1 endDelimiter:--//
|
2022-08-14 16:44:26 +02:00
|
|
|
-- ----------------------------------------------------------------------------
|
|
|
|
|
2022-08-31 14:57:15 +02:00
|
|
|
create table if not exists test_domain
|
2022-08-14 16:44:26 +02:00
|
|
|
(
|
|
|
|
uuid uuid unique references RbacObject (uuid),
|
2022-08-31 09:42:40 +02:00
|
|
|
packageUuid uuid references test_package (uuid),
|
2022-08-31 14:57:15 +02:00
|
|
|
name character varying(253),
|
2022-08-14 16:44:26 +02:00
|
|
|
description character varying(96)
|
|
|
|
);
|
|
|
|
--//
|