13 lines
138 B
PL/PgSQL
13 lines
138 B
PL/PgSQL
BEGIN;
|
|
|
|
INSERT INTO organizations (
|
|
id,
|
|
name
|
|
)
|
|
VALUES (
|
|
'11111111-1111-4111-8111-111111111111',
|
|
'Default Lab'
|
|
);
|
|
|
|
COMMIT;
|