不要怂,就是干,撸起袖子干!

Commit 1f45175d by Mick Hansen

:style: singlequotes

1 parent 9e8a283d
Showing with 3 additions and 4 deletions
...@@ -3,8 +3,7 @@ ...@@ -3,8 +3,7 @@
var Support = require(__dirname + '/../support') var Support = require(__dirname + '/../support')
, expectsql = Support.expectsql , expectsql = Support.expectsql
, current = Support.sequelize , current = Support.sequelize
, sql = current.dialect.QueryGenerator , sql = current.dialect.QueryGenerator;
, current = Support.sequelize;
// Notice: [] will be replaced by dialect specific tick/quote character when there is not dialect specific expectation but only a default expectation // Notice: [] will be replaced by dialect specific tick/quote character when there is not dialect specific expectation but only a default expectation
...@@ -15,8 +14,8 @@ suite(Support.getTestDialectTeaser('SQL'), function() { ...@@ -15,8 +14,8 @@ suite(Support.getTestDialectTeaser('SQL'), function() {
schema: 'archive', schema: 'archive',
tableName: 'user' tableName: 'user'
}, 'email'), { }, 'email'), {
default: "ALTER TABLE [archive].[user] DROP COLUMN [email];", default: 'ALTER TABLE [archive].[user] DROP COLUMN [email];',
mysql: "ALTER TABLE `archive.user` DROP `email`;" mysql: 'ALTER TABLE `archive.user` DROP `email`;'
}); });
}); });
}); });
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!