diff options
author | Jan <jan.h.xie@gmail.com> | 2011-02-03 20:57:14 +0800 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2011-02-08 10:31:09 -0800 |
commit | 9643243204fab063630380f42fcd4b8160044104 (patch) | |
tree | ce252988a8b09c9bd3c80813bf398ef4c8ba8fdc /activerecord/test/schema | |
parent | ac86923fcaac9d07d1f7a313e841d9c68b08411c (diff) | |
download | rails-9643243204fab063630380f42fcd4b8160044104.tar.gz rails-9643243204fab063630380f42fcd4b8160044104.tar.bz2 rails-9643243204fab063630380f42fcd4b8160044104.zip |
make set_table_name take effect immediately
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 665a4fe914..b1763ff431 100644 --- a/activerecord/test/schema/schema.rb +++ b/activerecord/test/schema/schema.rb @@ -229,6 +229,10 @@ ActiveRecord::Schema.define do t.string :name end + create_table :cold_jokes, :force => true do |t| + t.string :name + end + create_table :goofy_string_id, :force => true, :id => false do |t| t.string :id, :null => false t.string :info |