englishtokorea/web/app/Models/UserLearningInfoModel.php
2025-05-28 14:26:49 +09:00

17 lines
346 B
PHP

<?php
namespace App\Models;
use CodeIgniter\Model;
class UserLearningInfoModel extends Model
{
protected $table = 'user_learning_info';
protected $allowedFields = ['id', 'email', 'learning_data', 'updated_at'];
public function getLearningInfoByUserId($userId)
{
return $this->where('email', $userId)->first();
}
}