我已经在<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.0/jquery-ui.min.js"></script>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.0/themes/smoothness/jquery-ui.css" />
<table id="myTable">
<tr>
<td>
<input type="checkbox" />
</td>
<td>
<input type="text" />
</td>
</tr>
<tr>
<td>
<input type="checkbox" />
</td>
<td>
<input type="text" />
</td>
</tr>
</table>
<button id="myButton">Button</button>
<div id="dialog" title="Invalid" style="display: none;">
<p>Not all checked boxes had text entries</p>
</div>
中开发了一个应用程序,并将其部署在heroku中,并且使用了rails
数据库。现在,作为管理员,我想可视化所有表的当前结构,即表中的行或这些行中的数据。我已经实现了从收集数据到将其存储到数据库中的所有内容,现在我想查看数据库中表中发生的所有数据修改的跟踪记录。请指导我。