你不能
该问题建议使用原始查询来创建此类列,因此您应该在迁移文件中执行以下操作:
Schema::create("<table name>", function($table) { // here you do all columns supported by the schema builder});// once the table is created use a raw query to ALTER it and add the MEDIUMBLOBDB::statement("ALTER TABLE <table name> ADD <column name> MEDIUMBLOB");


