schangxiang@126.com
2025-09-19 0821aa23eabe557c0d9ef5dbe6989c68be35d1fe
1
{"version":3,"sources":["../browser/src/decorator/options/JoinTableOptions.ts"],"names":[],"mappings":"","file":"JoinTableOptions.js","sourcesContent":["import {JoinColumnOptions} from \"./JoinColumnOptions\";\n\n/**\n * Describes join table options.\n */\nexport interface JoinTableOptions {\n\n    /**\n     * Name of the table that will be created to store values of the both tables (join table).\n     * By default is auto generated.\n     */\n    name?: string;\n\n    /**\n     * First column of the join table.\n     */\n    joinColumn?: JoinColumnOptions;\n\n    /**\n     * Second (inverse) column of the join table.\n     */\n    inverseJoinColumn?: JoinColumnOptions;\n\n    /**\n     * Database where join table will be created.\n     * Works only in some databases (like mysql and mssql).\n     */\n    database?: string;\n\n    /**\n     * Schema where join table will be created.\n     * Works only in some databases (like postgres and mssql).\n     */\n    schema?: string;\n\n}\n"],"sourceRoot":"../.."}