mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-19 13:06:01 +00:00
drop database #384
This commit is contained in:
@@ -181,6 +181,14 @@ export class SqlDumper implements AlterProcessor {
|
||||
this.put(' ^auto_increment');
|
||||
}
|
||||
|
||||
createDatabase(name: string) {
|
||||
this.putCmd('^create ^database %i', name);
|
||||
}
|
||||
|
||||
dropDatabase(name: string) {
|
||||
this.putCmd('^drop ^database %i', name);
|
||||
}
|
||||
|
||||
specialColumnOptions(column) {}
|
||||
|
||||
columnDefinition(column: ColumnInfo, { includeDefault = true, includeNullable = true, includeCollate = true } = {}) {
|
||||
|
||||
Reference in New Issue
Block a user