2022-07-29 11:39:32 +02:00
|
|
|
--liquibase formatted sql
|
|
|
|
|
|
|
|
-- ============================================================================
|
2022-08-31 09:42:40 +02:00
|
|
|
--changeset test-customer-MAIN-TABLE:1 endDelimiter:--//
|
2022-07-29 11:39:32 +02:00
|
|
|
-- ----------------------------------------------------------------------------
|
|
|
|
|
2022-08-31 09:42:40 +02:00
|
|
|
create table if not exists test_customer
|
2022-07-29 11:39:32 +02:00
|
|
|
(
|
|
|
|
uuid uuid unique references RbacObject (uuid),
|
|
|
|
reference int not null unique check (reference between 10000 and 99999),
|
|
|
|
prefix character(3) unique,
|
|
|
|
adminUserName varchar(63)
|
|
|
|
);
|
|
|
|
--//
|