1
0
Fork 0
mirror of synced 2024-09-30 09:07:25 +13:00

Don't allow foreign key to be the primary key of a row (this would break things).

This commit is contained in:
mike12345567 2021-07-06 13:10:02 +01:00
parent 2fc512bcda
commit ff99e1dcc6

View file

@ -62,6 +62,7 @@
if ($touched.toCol && !toRelate.name) {
errors.toCol = colNotSet
}
// currently don't support relationships back onto the table itself, needs to relate out
const tableError = "From/to/through tables must be different"
if (fromTable && (fromTable === toTable || fromTable === throughTable)) {
errors.from = tableError
@ -241,10 +242,10 @@
bind:error={errors.through}
bind:value={fromRelationship.through}
/>
{:else if toTable}
{:else if fromRelationship?.relationshipType && toTable}
<Select
label={`Foreign Key (${toTable?.name})`}
options={Object.keys(toTable?.schema)}
options={Object.keys(toTable?.schema).filter(field => toTable?.primary.indexOf(field) === -1)}
on:change={() => ($touched.foreign = true)}
bind:error={errors.foreign}
bind:value={fromRelationship.fieldName}