diff options
author | Jon Leighton <j@jonathanleighton.com> | 2011-12-18 23:35:25 +0000 |
---|---|---|
committer | Jon Leighton <j@jonathanleighton.com> | 2011-12-24 11:08:15 +0000 |
commit | 6af7192af59602e1cbb341b8bf3452afb344eff2 (patch) | |
tree | 7e02050aedff7fbd8cb916b20b9a27f71a0a559f /activerecord/test/schema | |
parent | b2c9ce341a1c907041f55461aefebb0321280cb5 (diff) | |
download | rails-6af7192af59602e1cbb341b8bf3452afb344eff2.tar.gz rails-6af7192af59602e1cbb341b8bf3452afb344eff2.tar.bz2 rails-6af7192af59602e1cbb341b8bf3452afb344eff2.zip |
I herd you like modules.
Diffstat (limited to 'activerecord/test/schema')
-rw-r--r-- | activerecord/test/schema/schema.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/activerecord/test/schema/schema.rb b/activerecord/test/schema/schema.rb index 5933e1f46e..09c8c25d74 100644 --- a/activerecord/test/schema/schema.rb +++ b/activerecord/test/schema/schema.rb @@ -596,6 +596,10 @@ ActiveRecord::Schema.define do t.datetime :ending end + create_table :teapots, :force => true do |t| + t.string :name + end + create_table :topics, :force => true do |t| t.string :title t.string :author_name |