2011-08-31 23:49:09 +02:00
|
|
|
ActiveRecord::Schema.define(:version => 0) do
|
|
|
|
|
2012-02-23 00:06:08 +13:00
|
|
|
%w{gates readers writers transients simples simple_new_dsls thieves localizer_test_models}.each do |table_name|
|
2012-02-22 15:25:43 +13:00
|
|
|
create_table table_name, :force => true do |t|
|
|
|
|
t.string "aasm_state"
|
|
|
|
end
|
2011-08-31 23:53:33 +02:00
|
|
|
end
|
2011-08-31 23:49:09 +02:00
|
|
|
|
2011-12-29 16:23:48 +01:00
|
|
|
create_table "validators", :force => true do |t|
|
|
|
|
t.string "name"
|
|
|
|
t.string "status"
|
|
|
|
end
|
|
|
|
|
2012-01-16 17:27:15 +01:00
|
|
|
create_table "invalid_persistors", :force => true do |t|
|
|
|
|
t.string "name"
|
|
|
|
t.string "status"
|
|
|
|
end
|
|
|
|
|
2011-08-31 23:49:09 +02:00
|
|
|
end
|