Co-authored-by: Michael Hoennig <michael@hoennig.de> Reviewed-on: https://dev.hostsharing.net/hostsharing/hs.hsadmin.ng/pulls/185 Reviewed-by: Timotheus Pokorra <timotheus.pokorra@hostsharing.net>
20 lines
874 B
PL/PgSQL
20 lines
874 B
PL/PgSQL
--liquibase formatted sql
|
|
|
|
-- In a separate file to avoid changed checksums in the existing changsets.
|
|
-- I presume it's a bug in Liquibase that other changeset checksums are changed by new changesets in the same file
|
|
|
|
-- ============================================================================
|
|
--changeset michael.hoennig:hs-office-person-TEST-DATA-GENERATION-FOR-CREDENTIALS context:!without-test-data endDelimiter:--//
|
|
-- ----------------------------------------------------------------------------
|
|
|
|
do language plpgsql $$
|
|
begin
|
|
call hs_office.person_create_test_data('NP', null,'Hostmaster', 'Alex');
|
|
call hs_office.person_create_test_data('NP', null, 'Hostmaster', 'Fran');
|
|
call hs_office.person_create_test_data('NP', null, 'User', 'Drew');
|
|
call hs_office.person_create_test_data('NP', null, 'User', 'Test');
|
|
end;
|
|
$$;
|
|
--//
|
|
|