adkron / actsaswizard

A Rails plugin to make creating a wizard easy and with a lot less code

This URL has Read+Write access

Nathan (author)
Sun Jun 14 23:26:46 -0700 2009
adkron (committer)
Mon Jun 15 05:05:40 -0700 2009
commit  86037127b34982ca90cd8e44116a88317f6855c0
tree    de4f4e5161d4a06c1f1e98ebc6441bed540bc428
parent  ac56f55df122ca1e3c518c40c1fdda379f9dd60a
actsaswizard / test / schema.rb
100644 17 lines (14 sloc) 0.377 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
ActiveRecord::Schema.define(:version => 1) do
  create_table :main_models, :force => true do |t|
    t.string :state
  end
 
create_table :empty_models, :force => true do |t|
    t.string :state
  end
 
create_table :first_pages, :force => true do |t|
    t.integer :main_model_id
  end
 
create_table :second_pages, :force => true do |t|
    t.integer :main_model_id
  end
end