hs.hsadmin.ng/src/main/resources/db/changelog/200-hs-admin-contact.sql

16 lines
556 B
MySQL
Raw Normal View History

--liquibase formatted sql
-- ============================================================================
--changeset hs-admin-contact-MAIN-TABLE:1 endDelimiter:--//
-- ----------------------------------------------------------------------------
create table if not exists hs_admin_contact
(
uuid uuid unique references RbacObject (uuid) initially deferred,
label varchar(96) not null,
postalAddress text,
2022-09-07 12:25:12 +02:00
emailAddresses text, -- TODO.feat: change to json
phoneNumbers text -- TODO.feat: change to json
);
--//