我使用Laravel和我有遷移與功能:錯誤PHP的工匠遷移laravel
public function up()
{
Schema::table('articles', function (Blueprint $table) {
$table->string('article_title',100)->change();
});
}
,當我在我的CMD做「PHP的工匠遷移」我得到錯誤:
[Doctrine\DBAL\DBALException] Unknown database type enum requested, Doctrine\DBAL\Platforms\MySqlPlatform may not support it.
我什至不使用枚舉!而且我也沒有任何其他沒有遷移並且沒有遷移的遷移。
你以前創建該表?如果不是,你需要創建它Schema :: create('articles',function(Blueprint $ table){table_> string('article_title',100) - > change(); }); –
我有這張表,也有這個專欄,但想要改變長度從50到100 :) – Danielius