src/model/schema/SourceFunctionalDependency.ts
Represents a functional dependency between columns from the database (sourceColumns).
Properties |
Public
constructor(lhs: Array
|
|||||||||
Parameters :
|
Public lhs |
Type : Array<SourceColumn>
|
Public rhs |
Type : Array<SourceColumn>
|
import SourceColumn from './SourceColumn';
/**
* Represents a functional dependency between columns from the database (sourceColumns).
*/
export default class SourceFunctionalDependency {
public constructor(
public lhs: Array<SourceColumn>,
public rhs: Array<SourceColumn>
) {}
}