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

Version Path
visual_migrate-4.1.7.0 test/dummy/app/views/index/index.html.erb
visual_migrate-4.1.0.0 test/dummy/app/views/index/index.html.erb
visual_migrate-4.0.2.0 test/dummy/app/views/index/index.html.erb
visual_migrate-4.0.1.6 test/dummy/app/views/index/index.html.erb
visual_migrate-4.0.1.5 test/dummy/app/views/index/index.html.erb
visual_migrate-4.0.1.4 test/dummy/app/views/index/index.html.erb
visual_migrate-4.0.1.3 test/dummy/app/views/index/index.html.erb