1
0
Fork 0
mirror of https://github.com/aasm/aasm synced 2023-03-27 23:22:41 -04:00
aasm/spec/schema.rb
2013-04-24 12:57:06 +02:00

30 lines
738 B
Ruby

ActiveRecord::Schema.define(:version => 0) do
%w{gates readers writers transients simples simple_new_dsls thieves localizer_test_models persisted_states provided_and_persisted_states}.each do |table_name|
create_table table_name, :force => true do |t|
t.string "aasm_state"
end
end
create_table "validators", :force => true do |t|
t.string "name"
t.string "status"
end
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
create_table "invalid_persistors", :force => true do |t|
t.string "name"
t.string "status"
end
end