mirror of
https://github.com/bitwarden/server.git
synced 2026-02-04 08:03:29 +08:00
13 lines
241 B
Plaintext
13 lines
241 B
Plaintext
|
|
INSERT INTO "OrganizationApiKey"(
|
||
|
|
"Id",
|
||
|
|
"OrganizationId",
|
||
|
|
"ApiKey",
|
||
|
|
"Type",
|
||
|
|
"RevisionDate")
|
||
|
|
SELECT gen_random_uuid(),
|
||
|
|
"Id" AS "OrganizationId",
|
||
|
|
"ApiKey",
|
||
|
|
0 AS "Type",
|
||
|
|
"RevisionDate"
|
||
|
|
FROM "Organization";
|