You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for example, how can I use dbml to give this description :
CREATE TABLE `MyTable` (
`id` INT PRIMARY KEY AUTO_INCREMENT,
`foreignKey1` INT,
`foreignKey2` INT,
CONSTRAINT `check_foreign_key` CHECK (`foreignKey1` IN (SELECT `id` FROM `OtherTable1`) OR `foreignKey2` IN (SELECT `id` FROM `OtherTable2`)))
);
The text was updated successfully, but these errors were encountered:
for example, how can I use dbml to give this description :
The text was updated successfully, but these errors were encountered: