Sha256: d991e76f35a403081cc6d3a62ec77cc8088d22343bf08f9b4931687a0dda362f

Contents?: true

Size: 500 Bytes

Versions: 1

Compression:

Stored size: 500 Bytes

Contents

<% if !@tables.nil? %>
  <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

1 entries across 1 versions & 1 rubygems

Version Path
visual_migrate-4.0.1.2 test/dummy/app/views/index/index.html.erb