tracks/vendor/plugins/acts_as_state_machine/test/schema.rb
2008-05-20 21:28:26 +01:00

11 lines
304 B
Ruby

ActiveRecord::Schema.define(:version => 1) do
create_table :conversations, :force => true do |t|
t.column :state_machine, :string
t.column :subject, :string
t.column :closed, :boolean
end
create_table :people, :force => true do |t|
t.column :name, :string
end
end