CHANGE ALL MYSQL TO ORM

This commit is contained in:
BIG2EYEZ
2024-01-18 18:34:09 +08:00
parent 61aeca0961
commit 8aeb622b17
8 changed files with 1169 additions and 725 deletions

View File

@ -41,7 +41,6 @@
<th>Name</th>
<th>Username</th>
<th>Email</th>
<th>Last Login</th>
<th>Job Title</th>
</tr>
</thead>
@ -52,7 +51,6 @@
<td><%- user.name %></td>
<td><%- user.username %></td>
<td><%- user.email %></td>
<td><%- new Date(user.lastLogin).toLocaleString('en-US', { timeZone: 'Asia/Singapore' }) %></td>
<td><%- user.jobTitle %></td>
</tr>
<% }); %>