通过DB :: statement

时间:2018-06-08 13:49:30

标签: php laravel

我有一个类型为enum的列我想将其更改为varchar类型但是它会带来一个错误,即sql语法不正确,请问解决方案

这是表创建迁移代码

 class CreateCurrenciesTable extends Migration
{
    /**
   * Run the migrations.
   *
   * @return void
   */
 public function up()
 {
    $symbols = ['₦', '$', '£'];
    Schema::create('currencies', function (Blueprint $table) use($symbols) {
        $table->increments('id');
        $table->string('name', 50);
        $table->string('code', 5);
        $table->enum('symbol', $symbols);
        $table->timestamps();
    });
}

/**
 * Reverse the migrations.
 *
 * @return void
 */
public function down()
{   
    DB::statement('SET FOREIGN_KEY_CHECKS = 0');
    Schema::dropIfExists('currencies');
    DB::statement('SET FOREIGN_KEY_CHECKS = 1');
}

这是我想用来更改列类型但继续收到错误的迁移代码

class AddSymbolToImagesTable extends Migration
{
/**
 * Run the migrations.
 *
 * @return void
 */
public function up()
{
    Schema::table('images', function (Blueprint $table) {
       DB::statement('ALTER TABLE images ALTER COLUMN symbol VARCHAR(200)');
       // $table->text('symbol')->change();
    });
}

/**
 * Reverse the migrations.
 *
 * @return void
 */
public function down()
{
    Schema::table('images', function (Blueprint $table) {
       // $symbols = ['₦', '$', '£'];
       // $table->enum('symbol', $symbols)->change();
        DB::statement('ALTER TABLE images ALTER COLUMN symbol enum ');
    });
}
}

1 个答案:

答案 0 :(得分:0)

这与Laravel没有任何关系,你还应该在下次包含错误。

要更改列类型,您可以使用MODIFYMODIFY COLUMN

所以这会奏效: ALTER TABLE images MODIFY symbol varchar(200)

有一些更改列名称,您可以在此处的文档中看到:https://dev.mysql.com/doc/refman/8.0/en/alter-table.html#alter-table-redefine-column