mirror of
https://github.com/aasm/aasm
synced 2023-03-27 23:22:41 -04:00
12 lines
300 B
Ruby
12 lines
300 B
Ruby
ActiveRecord::Schema.define(:version => 0) do
|
|
|
|
%w{gates readers writers transients simples thieves localizer_test_models}.each do |table_name|
|
|
create_table table_name, :force => true
|
|
end
|
|
|
|
create_table "validators", :force => true do |t|
|
|
t.string "name"
|
|
t.string "status"
|
|
end
|
|
|
|
end
|