在運行PHP人員遷移,我得到以下錯誤Laravel 5.1未知數據庫類型枚舉請求
[學說\ DBAL \ DBALException]
未知數據庫類型枚舉請求,學說\ DBAL \平臺\ MySqlPlatform可能不支持它。
如何解決此問題。
代碼:
public function up() {
Schema::table('blogs', function (Blueprint $table) {
$table->string('wordpress_id')->nullable();
$table->string('google_blog_id')->nullable()->change();
});
}
請發佈您嘗試遷移的模式。 – Adrenaxus
公共功能了(){ 架構 ::表( '博客',函數(藍圖$表) {$ 表 - >字符串( 'wordpress_id') - >可以爲空(); $ 表 - >字符串( 'google_blog_id') - > nullable() - > change(); }); } – karthick
你的表是否包含一個'enum'列? – Adrenaxus