Sha256: 33639da6c9f29758896fd27cc13340f369fc3376b27a52f7bd70bbb072cbe23b
Contents?: true
Size: 1.03 KB
Versions: 4
Compression:
Stored size: 1.03 KB
Contents
<div class="content"> <h1>Maintenance</h1> <table class="table"> <thead> <tr> <th>Table</th> <th style="width: 20%;">Last Vacuum</th> <th style="width: 20%;">Last Analyze</th> </tr> </thead> <tbody> <% @maintenance_info.each do |table| %> <tr> <td> <%= table["table"] %> <% if table["schema"] != "public" %> <span class="text-muted"><%= table["schema"] %></span> <% end %> </td> <td> <% time = [table["last_autovacuum"], table["last_vacuum"]].compact.max %> <% if time %> <%= @time_zone.parse(time).strftime("%m/%-e %l:%M %P") %> <% end %> </td> <td> <% time = [table["last_autoanalyze"], table["last_analyze"]].compact.max %> <% if time %> <%= @time_zone.parse(time).strftime("%m/%-e %l:%M %P") %> <% end %> </td> </tr> <% end %> </tbody> </table> </div>
Version data entries
4 entries across 4 versions & 1 rubygems