schema.html.erb 513 B

1234567891011121314151617181920
  1. <% blazer_title "Database Schema" %>
  2. <% @schema.each do |table| %>
  3. <h4>
  4. <%= table[:table] %>
  5. <% if table[:schema] != "public" %>
  6. <small><%= table[:schema] %></small>
  7. <% end %>
  8. </h4>
  9. <table class="table" style="max-width: 500px;">
  10. <tbody>
  11. <% table[:columns].each do |column| %>
  12. <tr>
  13. <td style="width: 60%;"><%= column[:name] %></td>
  14. <td class="text-muted"><%= column[:data_type] %></td>
  15. </tr>
  16. <% end %>
  17. </tbody>
  18. </table>
  19. <% end %>