mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-26 05:15:59 +00:00
recreate table WIP
This commit is contained in:
12
packages/types/dialect.d.ts
vendored
12
packages/types/dialect.d.ts
vendored
@@ -10,7 +10,17 @@ export interface SqlDialect {
|
||||
explicitDropConstraint?: boolean;
|
||||
anonymousPrimaryKey?: boolean;
|
||||
enableConstraintsPerTable?: boolean;
|
||||
nosql?: boolean; // mongo
|
||||
|
||||
dropColumnDependencies?: string[];
|
||||
changeColumnDependencies?: string[];
|
||||
nosql?: boolean; // mongo
|
||||
|
||||
createColumn?: boolean;
|
||||
dropColumn?: boolean;
|
||||
createIndex?: boolean;
|
||||
dropIndex?: boolean;
|
||||
createForeignKey?: boolean;
|
||||
dropForeignKey?: boolean;
|
||||
createPrimaryKey?: boolean;
|
||||
dropPrimaryKey?: boolean;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user