Skip to content

Commit

Permalink
Add support for typedef, which allows clusters/structs to create dist…
Browse files Browse the repository at this point in the history
…inct types that aliases to the raw type for better readability & documentation-by-code, e.g. IDs
  • Loading branch information
gmarcosb committed Jan 15, 2025
1 parent db1f907 commit 1c43fa7
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src-electron/db/zap-schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3409,13 +3409,13 @@ WHERE SESSION_ID = OLD.SESSION_REF;
END;

/*
____ _ _ ____ ___ ____ _ _ _ _ _ _ _ ___ ____ _ ____ ____ ____ ____ ____
| | | [__ | | | |\/| \/ |\/| | | |__/ | | __ | __ |___ |__/ [__
|___ |__| ___] | |__| | | _/\_ | | |___ | | \ | |__] |__] |___ | \ ___]
____ _ _ ____ ___ ____ _ _ _ _ _ _ _ ___ ____ _ ____ ____ ____ ____ ____
| | | [__ | | | |\/| \/ |\/| | | |__/ | | __ | __ |___ |__/ [__
|___ |__| ___] | |__| | | _/\_ | | |___ | | \ | |__] |__] |___ | \ ___]
Custom XML specific triggers
*/
*/

/* Triggers that deal with code conflicts in custom xml */

/* Trigger that deals with code conflicts in clusters when new session package is inserted */
Expand Down Expand Up @@ -4108,9 +4108,9 @@ BEGIN
0
FROM
COMMAND_ARG a
INNER JOIN
INNER JOIN
COMMAND c
ON
ON
a.COMMAND_REF = c.COMMAND_ID
INNER JOIN
PACKAGE p
Expand Down Expand Up @@ -4192,9 +4192,9 @@ BEGIN
0
FROM
COMMAND_ARG a
INNER JOIN
INNER JOIN
COMMAND c
ON
ON
a.COMMAND_REF = c.COMMAND_ID
INNER JOIN
PACKAGE p
Expand Down Expand Up @@ -4276,7 +4276,7 @@ BEGIN
EVENT_FIELD f
INNER JOIN
EVENT e
ON
ON
f.EVENT_REF = e.EVENT_ID
INNER JOIN
PACKAGE p
Expand Down Expand Up @@ -4360,7 +4360,7 @@ BEGIN
EVENT_FIELD f
INNER JOIN
EVENT e
ON
ON
f.EVENT_REF = e.EVENT_ID
INNER JOIN
PACKAGE p
Expand Down

0 comments on commit 1c43fa7

Please sign in to comment.