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
Reference
この問題について(Laravel -カラム型を変更する方法( SmallInteger => String ) Re : Raravel -カラムタイプを変更する方法( 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 ) Re : Raravel -カラムタイプを変更する方法( 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