質問
migrationで以下のようなテーブルを作ります。
Schema::create('samples', function (Blueprint $table) { $table->id(); $table->softDeletes(); $table->timestamp('created_at')->useCurrent()->comment('登録日時'); $table->timestamp('updated_at')->useCurrentOnUpdate()->nullable()->comment('変更日時'); });
updated_atはinsert時はnullを設定したいのですが、current timestampが設定されてしまいます。
useCurrentOnUpdate
nullを設定する方法はありますか。
環境
Laravel8
MySQL8
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。