sql >> データベース >  >> RDS >> Mysql

Laravel-カスタムタイムスタンプを頻繁に上書きする...なぜですか?

    timestampを使用する必要はないと思います フィールドを作成するメソッドですが、dateTimeを使用する必要があります 方法:

    Schema::create('pusher_out_of_stocks', function (Blueprint $table) {
        $table->increments('id');
    
        $table->integer('pusher_id');
        $table->integer('location_id');
        $table->integer('product_id');
    
        $table->dateTime('oos_at');
        $table->dateTime('restocked_at')->nullable();
    
        $table->timestamps();
        $table->softDeletes();
    });
    

    これはうまくいくはずです:)

    お役に立てば幸いです。




    1. 関数はSTRICT修飾子なしでより速く実行されますか?

    2. PSQLで別のテーブルから継承する子テーブルを見つける方法

    3. postgres日時から秒を引く方法

    4. ループ結果PDOPHP