-
Notifications
You must be signed in to change notification settings - Fork 12
Open
Description
| entity: '?Identifier', |
One-to-one relations should be to the Entity table. So line 4 should be:
entity: '?Entity',
in structure.sql file:
NodeJS-Application/db/structure.sql
Line 9 in 5749fec
| ALTER TABLE "Identifier" ADD CONSTRAINT "fkIdentifierEntity" FOREIGN KEY ("entityId") REFERENCES "Identifier" ("id"); |
So line 9 should be:
ALTER TABLE "Identifier" ADD CONSTRAINT "fkIdentifierEntity" FOREIGN KEY ("entityId") REFERENCES "Entity" ("id");
But this generates an error - since the Entity table has not yet been created.
Metadata
Metadata
Assignees
Labels
No labels