vlado/rails_db_info

View on GitHub
app/views/rails_db_info/tables/index.html.erb

Summary

Maintainability
Test Coverage
<table class="tables">
  <thead>
    <tr>
      <th>Table name</th>
      <th colspan="2">&nbsp;</th>
    </tr>
  </thead>
  <tbody>
    <% @tables.each do |table| %>
      <tr>
        <td><%= table %></td>
        <td><%= link_to 'Schema', table_path(table) %></td>
        <td><%= link_to 'Entries', table_entries_path(table) %></td>
      </tr>
    <% end -%>
  </tbody>
</table>