LALAVELマイグレーションのデフォルト値を返します
1060 ワード
Laravelの移行デフォルト値
Jun 6
96
単一の引用符でデフォルト値を入れ、それは意図通りに動作します.移行の例$table->increments('id');
$table->string('name');
$table->string('url');
$table->string('country');
$table->tinyInteger('status')->default('1');
$table->timestamps();
あなたのケースでデフォルトを編集します
Open Full Answer
Reference
この問題について(LALAVELマイグレーションのデフォルト値を返します), 我々は、より多くの情報をここで見つけました
https://dev.to/rnagarajan96/answer-laravel-migration-default-value-562k
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
$table->increments('id');
$table->string('name');
$table->string('url');
$table->string('country');
$table->tinyInteger('status')->default('1');
$table->timestamps();
Reference
この問題について(LALAVELマイグレーションのデフォルト値を返します), 我々は、より多くの情報をここで見つけました https://dev.to/rnagarajan96/answer-laravel-migration-default-value-562kテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol