답변: Laravel-열 형식 변경 방법(smallInteger=>string) 대답: Laravel-열 형식 변경 방법(smallInteger=>string)

1298 단어

답변: Laravel - 열 유형을 변경하는 방법(smallInteger=>string)


2017년 2월 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

좋은 웹페이지 즐겨찾기