Skip to content

Commit

Permalink
Merge pull request #3260 from ejenk0/issue-3247-inaccurate-info-for-f…
Browse files Browse the repository at this point in the history
…oreign-key-column-referencing-unique-column

Display more accurate infoAlertText on foreign key columns
  • Loading branch information
seancolsen authored Oct 25, 2023
2 parents cd3b437 + 788a673 commit 39ea29a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
return 'The data type of the primary key column is restricted and cannot be changed.';
}
if (column.linkFk) {
return 'The data type of the foreign key column is restricted to the data type of the primary key column and cannot be changed.';
return 'The data type of this column must match the referenced column and cannot be changed.';
}
return '';
})();
Expand Down

0 comments on commit 39ea29a

Please sign in to comment.