답변: Laravel-열 형식 변경 방법(smallInteger=>string) 대답: Laravel-열 형식 변경 방법(smallInteger=>string)
답변: 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
Reference
이 문제에 관하여(답변: Laravel-열 형식 변경 방법(smallInteger=>string) 대답: Laravel-열 형식 변경 방법(smallInteger=>string)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/rnagarajan96/answer-laravel-how-to-change-column-type-smallinteger-string-4mfk
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
composer require doctrine/dbal
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();
});
}
Reference
이 문제에 관하여(답변: Laravel-열 형식 변경 방법(smallInteger=>string) 대답: Laravel-열 형식 변경 방법(smallInteger=>string)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/rnagarajan96/answer-laravel-how-to-change-column-type-smallinteger-string-4mfk텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)