2011-08-31 17:49:09 -04:00
|
|
|
ActiveRecord::Schema.define(:version => 0) do
|
|
|
|
|
2013-08-06 10:55:32 -04:00
|
|
|
%w{gates readers writers transients simples simple_new_dsls no_scopes thieves localizer_test_models persisted_states provided_and_persisted_states}.each do |table_name|
|
2012-02-21 21:25:43 -05:00
|
|
|
create_table table_name, :force => true do |t|
|
|
|
|
t.string "aasm_state"
|
|
|
|
end
|
2011-08-31 17:53:33 -04:00
|
|
|
end
|
2011-08-31 17:49:09 -04:00
|
|
|
|
2011-12-29 10:23:48 -05:00
|
|
|
create_table "validators", :force => true do |t|
|
|
|
|
t.string "name"
|
|
|
|
t.string "status"
|
|
|
|
end
|
|
|
|
|
2012-10-24 04:03:09 -04:00
|
|
|
create_table "transactors", :force => true do |t|
|
|
|
|
t.string "name"
|
|
|
|
t.string "status"
|
|
|
|
t.integer "worker_id"
|
|
|
|
end
|
|
|
|
|
|
|
|
create_table "workers", :force => true do |t|
|
|
|
|
t.string "name"
|
|
|
|
t.string "status"
|
|
|
|
end
|
|
|
|
|
2012-01-16 11:27:15 -05:00
|
|
|
create_table "invalid_persistors", :force => true do |t|
|
|
|
|
t.string "name"
|
|
|
|
t.string "status"
|
|
|
|
end
|
|
|
|
|
2013-04-30 09:09:12 -04:00
|
|
|
create_table "fathers", :force => true do |t|
|
|
|
|
t.string "aasm_state"
|
|
|
|
t.string "type"
|
|
|
|
end
|
|
|
|
|
2011-08-31 17:49:09 -04:00
|
|
|
end
|