mirror of
https://github.com/knex/knex.git
synced 2025-07-07 17:10:49 +00:00
92 lines
2.5 KiB
JavaScript
92 lines
2.5 KiB
JavaScript
// MySQL Schema Compiler
|
|
// -------
|
|
const SchemaCompiler = require('../../../schema/compiler');
|
|
|
|
class SchemaCompiler_MSSQL extends SchemaCompiler {
|
|
constructor(client, builder) {
|
|
super(client, builder);
|
|
}
|
|
|
|
dropTableIfExists(tableName) {
|
|
const name = this.formatter.wrap(prefixedTableName(this.schema, tableName));
|
|
this.pushQuery(
|
|
`if object_id('${name}', 'U') is not null DROP TABLE ${name}`
|
|
);
|
|
}
|
|
|
|
dropViewIfExists(viewName) {
|
|
const name = this.formatter.wrap(prefixedTableName(this.schema, viewName));
|
|
this.pushQuery(
|
|
`if object_id('${name}', 'V') is not null DROP VIEW ${name}`
|
|
);
|
|
}
|
|
|
|
// Rename a table on the schema.
|
|
renameTable(tableName, to) {
|
|
this.pushQuery(
|
|
`exec sp_rename ${this.client.parameter(
|
|
prefixedTableName(this.schema, tableName),
|
|
this.builder,
|
|
this.bindingsHolder
|
|
)}, ${this.client.parameter(to, this.builder, this.bindingsHolder)}`
|
|
);
|
|
}
|
|
|
|
renameView(viewTable, to) {
|
|
this.pushQuery(
|
|
`exec sp_rename ${this.client.parameter(
|
|
prefixedTableName(this.schema, viewTable),
|
|
this.builder,
|
|
this.bindingsHolder
|
|
)}, ${this.client.parameter(to, this.builder, this.bindingsHolder)}`
|
|
);
|
|
}
|
|
|
|
// Check whether a table exists on the query.
|
|
hasTable(tableName) {
|
|
const formattedTable = this.client.parameter(
|
|
prefixedTableName(this.schema, tableName),
|
|
this.builder,
|
|
this.bindingsHolder
|
|
);
|
|
const bindings = [tableName];
|
|
let sql =
|
|
`SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES ` +
|
|
`WHERE TABLE_NAME = ${formattedTable}`;
|
|
|
|
if (this.schema) {
|
|
sql += ' AND TABLE_SCHEMA = ?';
|
|
bindings.push(this.schema);
|
|
}
|
|
|
|
this.pushQuery({ sql, bindings, output: (resp) => resp.length > 0 });
|
|
}
|
|
|
|
// Check whether a column exists on the schema.
|
|
hasColumn(tableName, column) {
|
|
const formattedColumn = this.client.parameter(
|
|
column,
|
|
this.builder,
|
|
this.bindingsHolder
|
|
);
|
|
const formattedTable = this.client.parameter(
|
|
this.formatter.wrap(prefixedTableName(this.schema, tableName)),
|
|
this.builder,
|
|
this.bindingsHolder
|
|
);
|
|
const sql =
|
|
`select object_id from sys.columns ` +
|
|
`where name = ${formattedColumn} ` +
|
|
`and object_id = object_id(${formattedTable})`;
|
|
this.pushQuery({ sql, output: (resp) => resp.length > 0 });
|
|
}
|
|
}
|
|
|
|
SchemaCompiler_MSSQL.prototype.dropTablePrefix = 'DROP TABLE ';
|
|
|
|
function prefixedTableName(prefix, table) {
|
|
return prefix ? `${prefix}.${table}` : table;
|
|
}
|
|
|
|
module.exports = SchemaCompiler_MSSQL;
|