aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/fixtures/db_definitions/schema.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2008-01-05 14:58:28 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2008-01-05 14:58:28 +0000
commitebe3a0d532152d47f270ffaa0e11b994f4a8b177 (patch)
treed25ff07781cc30994316e9e34378ffea8725cf00 /activerecord/test/fixtures/db_definitions/schema.rb
parent139b92495fa7697cdd619c549d4c7b263562b761 (diff)
downloadrails-ebe3a0d532152d47f270ffaa0e11b994f4a8b177.tar.gz
rails-ebe3a0d532152d47f270ffaa0e11b994f4a8b177.tar.bz2
rails-ebe3a0d532152d47f270ffaa0e11b994f4a8b177.zip
More thoroughly quote table names. Exposes some issues with sqlite2 adapter. Closes #10698.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8571 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/test/fixtures/db_definitions/schema.rb')
-rw-r--r--activerecord/test/fixtures/db_definitions/schema.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/activerecord/test/fixtures/db_definitions/schema.rb b/activerecord/test/fixtures/db_definitions/schema.rb
index a943b84f42..d5affc2ab1 100644
--- a/activerecord/test/fixtures/db_definitions/schema.rb
+++ b/activerecord/test/fixtures/db_definitions/schema.rb
@@ -351,4 +351,8 @@ ActiveRecord::Schema.define do
t.datetime :updated_at
t.datetime :updated_on
end
+
+ create_table 'warehouse-things', :force => true do |t|
+ t.integer :value
+ end
end