Sha256: 232a7a44fa1342e8c573cffcd9ff451b4091d1a0d836846e4d74f2900456715c
Contents?: true
Size: 508 Bytes
Versions: 7
Compression:
Stored size: 508 Bytes
Contents
<% if !(@tables.count <= 1) %> <table border="1"> <tr> <th>table</th> <th>columns</th> </tr> <tr> <td> <% @tables.each do |t| %> <%= (link_to t, :action => :index, :id => t) + raw('<br />') if t != 'schema_migrations'%><br /> <% end %> </td> <td> <% if !@columns.nil? %> <% @columns.each do |c| %> <%= c.to_s %><br /> <% end %> <% end %> </td> </tr> </table> <br /> <% end %>
Version data entries
7 entries across 7 versions & 1 rubygems