rocket-a


git -C '/home/opc/rocketa.git' show 13d79e5 -- app/Models/Api/ApiClickRecordsTest.php

commit 13d79e5dee41987780133ced01b3e3cc2349b1c9
Author: Satoshi Ujihara <satoshi_ujihara@fivegate.jp>
Date:   Wed Nov 5 13:17:46 2025 +0900

    テストセンター機能実装

diff --git a/app/Models/Api/ApiClickRecordsTest.php b/app/Models/Api/ApiClickRecordsTest.php
new file mode 100644
index 0000000..4b9c8cf
--- /dev/null
+++ b/app/Models/Api/ApiClickRecordsTest.php
@@ -0,0 +1,25 @@
+<?php
+
+namespace App\Models\Api;
+
+use Illuminate\Database\Eloquent\Model;
+
+class ApiClickRecordsTest extends Model
+{
+    protected $connection = 'mysql_api';
+
+    protected $primaryKey = 'id';
+
+    protected $table = 'click_records_test';
+
+    protected $guarded = [
+        'id',
+        'created_at',
+        'updated_at',
+    ];
+
+    public $timestamps = false;
+
+    const CREATED_AT = null;
+    const UPDATED_AT = null;
+}

diff.txt · 最終更新: by root