Laravel -カラム型を変更する方法( SmallInteger => String ) Re : Raravel -カラムタイプを変更する方法( SmallInteger => string )

1289 ワード

Laravel -カラム型を変更する方法( SmallInteger => string )


月9日
2

スキーマ変更機能を使用するには、ドクトリンdbalを必要とします.
composer require doctrine/dbal
これでchange() :
public function up()
{
    Schema::table('foo', function (Blueprint $table) {
        $table->string('driverlicensetype', 4)->nullable()->change();
    });
}

public function down()
{
    Schema::table('foo', function (Blueprint $table) {
        $table->smallInteger('driverlicensetype')->nullable()->change();
    });
}
あなたが生のアプローチを好むならば..
Open Full Answer