hades-cli
Version:
Hades CLI developer tool
12 lines (11 loc) • 489 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SqlRelationship = void 0;
var SqlRelationship;
(function (SqlRelationship) {
SqlRelationship["NONE"] = "none";
SqlRelationship["ONE_TO_ONE"] = "one-to-one";
SqlRelationship["ONE_TO_MANY"] = "one-to-many";
SqlRelationship["MANY_TO_ONE"] = "many-to-one";
SqlRelationship["MANY_TO_MANY"] = "many-to-many";
})(SqlRelationship = exports.SqlRelationship || (exports.SqlRelationship = {}));