You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 line
260B

  1. <?php
  2. namespace App\Models;
  3. class UserHistory extends HistoryModel
  4. {
  5. protected $connection = "htpms";
  6. protected $table = "tbl3_mst_user_histories";
  7. public function getModelName(): string
  8. {
  9. return "ユーザー情報履歴";
  10. }
  11. }