Sha256: 547c0b98385ea5d33dc86896117eeba2be801c4ba8953caff32a9697e1b65962

Contents?: true

Size: 627 Bytes

Versions: 1

Compression:

Stored size: 627 Bytes

Contents

<div class="pt_new">
  <div class="pt_schema">
    <% @schema.tables.each do |t| %>
      <%= render 'table', table: t %>
    <% end %>
  </div>

  <div>
    <%= form_for @migration, url: migrations_path do |f| %>
      <%= render 'new_errors', migration: @migration %>

      <span>Class Name</span>
      <%= f.text_field :name %>

      <div class="pt_raw_content">
        <%= f.text_area :raw_content, size: '60x20' %>
      </div>

      <%= f.submit 'Update' %>
    <% end %>

    <%= button_to 'Cancel', migrations_path, method: :get %>
  </div>
</div>

<script type='text/javascript'>
  setupNewMigration();
</script>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ponytail-0.0.4 app/views/ponytail/migrations/new.html.erb