0

destroy でステータス フィールドを更新すると、created_at フィールドの日付が更新されます。これは私のコントローラーコードです

 async destroy({ params, request, response }) {
    try {
      const Applicationdata = await Application.find(params.id)
      if (Applicationdata) {
        Applicationdata.status = !Applicationdata.status
        await Applicationdata.save()
        return response.ok(Config.get('HttpResponse.OK'), {
              Applicationdata
        })
      } else {
        return response.fail(
          Config.get('HttpResponse.NOT_FOUND'),
          Antl.formatMessage('messages.recordNotFound')
        )
      }
    } catch (error) {
      console.log(error)
      return response.fail(
        Config.get('HttpResponse.INTERNAL_SERVER_ERROR'),
        Antl.formatMessage('messages.serverError')
      )
    }
  }

4

0 に答える 0