필드 유형을 타임스탬프로 설정했는데 예상대로 업데이트하거나 추가할 때 현재 타임스탬프가 자동으로 채워지지 않는 이유는 무엇입니까?
Laravel의 마이그레이션을 사용하여 생성한 데이터 테이블도 마찬가지입니다. 생성된 테이블의 타임스탬프 필드는 전혀 효과가 없습니다. 무슨 일이야?
마이그레이션 파일입니다
<code><?php use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateEquip extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('equip', function (Blueprint $table) { // $table->increments('id'); $table->smallInteger('equip_id')->unsigned()->comment('装备id'); $table->string('eqiup_name')->comment('装备名称'); $table->string('eqiup_desc')->comment('装备描述'); $table->timestamps(); $table->primary('equip_id'); }); } /** * Reverse the migrations. * * @return void */ public function down() { // } } </code>