23 lines
836 B
MySQL
Raw Normal View History

2022-10-04 19:09:37 +02:00
-- ============================================================================
--changeset hs-office-bankaccount-MAIN-TABLE:1 endDelimiter:--//
-- ----------------------------------------------------------------------------
create table hs_office_bankaccount
(
uuid uuid unique references rbac.object (uuid) initially deferred,
version int not null default 0,
holder varchar(64) not null,
2022-10-04 19:09:37 +02:00
iban varchar(34) not null,
bic varchar(11) not null
);
--//
-- ============================================================================
--changeset hs-office-bankaccount-MAIN-TABLE-JOURNAL:1 endDelimiter:--//
-- ----------------------------------------------------------------------------
call basis.create_journal('hs_office_bankaccount');
--//