Refactored code in PR #9441

This commit is contained in:
SilverFire - Dmitry Naumenko
2016-04-19 17:48:25 +03:00
parent c9dfc90be0
commit 0fe27b9d3b
21 changed files with 128 additions and 211 deletions

View File

@@ -48,6 +48,11 @@ class MysqlQueryBuilderTest extends QueryBuilderTest
$this->primaryKey(8)->first()->after('col_before'),
'int(8) NOT NULL AUTO_INCREMENT PRIMARY KEY FIRST'
],
[
Schema::TYPE_PK . " COMMENT 'test' AFTER `col_before`",
$this->primaryKey()->comment('test')->after('col_before'),
"int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY COMMENT 'test' AFTER `col_before`"
],
]);
}
}