mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-19 03:45:59 +00:00
dependencies
This commit is contained in:
3
types/dbinfo.d.ts
vendored
3
types/dbinfo.d.ts
vendored
@@ -8,7 +8,7 @@ export interface ColumnReference {
|
||||
refColumnName?: string;
|
||||
}
|
||||
|
||||
export interface ConstraintInfo {
|
||||
export interface ConstraintInfo extends NamedObjectInfo {
|
||||
constraintName: string;
|
||||
constraintType: string;
|
||||
}
|
||||
@@ -44,6 +44,7 @@ export interface TableInfo extends NamedObjectInfo {
|
||||
columns: ColumnInfo[];
|
||||
primaryKey?: PrimaryKeyInfo;
|
||||
foreignKeys: ForeignKeyInfo[];
|
||||
dependencies?: ForeignKeyInfo[];
|
||||
}
|
||||
export interface DatabaseInfo {
|
||||
tables: TableInfo[];
|
||||
|
||||
Reference in New Issue
Block a user