FanaHOVA/blazer

View on GitHub
app/views/blazer/queries/schema.html.erb

Summary

Maintainability
Test Coverage
<% @schema.each do |table| %>
  <h4>
    <%= table[:table] %>
    <% if table[:schema] != "public" %>
      <small><%= table[:schema] %></small>
    <% end %>
  </h4>
  <table class="table" style="max-width: 500px;">
    <tbody>
      <% table[:columns].each do |column| %>
        <tr>
          <td style="width: 60%;"><%= column[:name] %></td>
          <td class="text-muted"><%= column[:data_type] %></td>
        </tr>
      <% end %>
    </tbody>
  </table>
<% end %>