mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-29 16:15:04 +00:00
fix: change LOWER to HIGHER
This commit is contained in:
@@ -69,7 +69,7 @@ class Entity
|
|||||||
type: 'string',
|
type: 'string',
|
||||||
insertable: false,
|
insertable: false,
|
||||||
updatable: false,
|
updatable: false,
|
||||||
columnDefinition: "VARCHAR(255) GENERATED ALWAYS AS (LOWER(jsonb_path_query_first(j_card, '$[1]?(@[0] == \"fn\")[3]') #>> '{}')) STORED",
|
columnDefinition: "VARCHAR(255) GENERATED ALWAYS AS (UPPER(jsonb_path_query_first(j_card, '$[1]?(@[0] == \"fn\")[3]') #>> '{}')) STORED",
|
||||||
generated: 'ALWAYS',
|
generated: 'ALWAYS',
|
||||||
)]
|
)]
|
||||||
private ?string $jCardFn;
|
private ?string $jCardFn;
|
||||||
@@ -78,7 +78,7 @@ class Entity
|
|||||||
type: 'string',
|
type: 'string',
|
||||||
insertable: false,
|
insertable: false,
|
||||||
updatable: false,
|
updatable: false,
|
||||||
columnDefinition: "VARCHAR(255) GENERATED ALWAYS AS (LOWER(jsonb_path_query_first(j_card, '$[1]?(@[0] == \"org\")[3]') #>> '{}')) STORED",
|
columnDefinition: "VARCHAR(255) GENERATED ALWAYS AS (UPPER(jsonb_path_query_first(j_card, '$[1]?(@[0] == \"org\")[3]') #>> '{}')) STORED",
|
||||||
generated: 'ALWAYS',
|
generated: 'ALWAYS',
|
||||||
)]
|
)]
|
||||||
private ?string $jCardOrg;
|
private ?string $jCardOrg;
|
||||||
|
|||||||
Reference in New Issue
Block a user