aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/schema
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2009-08-04 11:03:57 -0500
committerJoshua Peek <josh@joshpeek.com>2009-08-04 11:03:57 -0500
commitaad5a30bf25d8a3167afd685fc91c99f4f09cc57 (patch)
treef700750ee088e483537fa7ee992a109b834b1ddc /activerecord/test/schema
parent55d1d12c32a1b99f3f07d2346b49a63650ba2e9d (diff)
downloadrails-aad5a30bf25d8a3167afd685fc91c99f4f09cc57.tar.gz
rails-aad5a30bf25d8a3167afd685fc91c99f4f09cc57.tar.bz2
rails-aad5a30bf25d8a3167afd685fc91c99f4f09cc57.zip
Add simple support for ActiveModel's StateMachine for ActiveRecord
Diffstat (limited to 'activerecord/test/schema')
-rw-r--r--activerecord/test/schema/schema.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/activerecord/test/schema/schema.rb b/activerecord/test/schema/schema.rb
index 2b7d3856b7..1e47cdbaf6 100644
--- a/activerecord/test/schema/schema.rb
+++ b/activerecord/test/schema/schema.rb
@@ -448,6 +448,13 @@ ActiveRecord::Schema.define do
t.integer :pet_id, :integer
end
+ create_table :traffic_lights, :force => true do |t|
+ t.string :location
+ t.string :state
+ t.datetime :created_at
+ t.datetime :updated_at
+ end
+
create_table :treasures, :force => true do |t|
t.column :name, :string
t.column :looter_id, :integer