aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/fixtures/db_definitions
diff options
context:
space:
mode:
authorJamis Buck <jamis@37signals.com>2006-03-09 17:23:57 +0000
committerJamis Buck <jamis@37signals.com>2006-03-09 17:23:57 +0000
commit87898badba211540d9c1d4dae0cd513a9d525554 (patch)
tree5423e8e10a2b0d9d48b845230d33028315e2d794 /activerecord/test/fixtures/db_definitions
parent130001c377e7abf17ea2f4f856cab30882a60f92 (diff)
downloadrails-87898badba211540d9c1d4dae0cd513a9d525554.tar.gz
rails-87898badba211540d9c1d4dae0cd513a9d525554.tar.bz2
rails-87898badba211540d9c1d4dae0cd513a9d525554.zip
Allow counter_cache to accept a column name
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3825 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/test/fixtures/db_definitions')
-rw-r--r--activerecord/test/fixtures/db_definitions/schema.rb20
1 files changed, 10 insertions, 10 deletions
diff --git a/activerecord/test/fixtures/db_definitions/schema.rb b/activerecord/test/fixtures/db_definitions/schema.rb
index f2e9eacb08..53aa7c1967 100644
--- a/activerecord/test/fixtures/db_definitions/schema.rb
+++ b/activerecord/test/fixtures/db_definitions/schema.rb
@@ -1,20 +1,20 @@
ActiveRecord::Schema.define do
- create_table "taggings", :force => true do |t|
- t.column "tag_id", :integer
- t.column "taggable_type", :string
- t.column "taggable_id", :integer
+ create_table :taggings, :force => true do |t|
+ t.column :tag_id, :integer
+ t.column :taggable_type, :string
+ t.column :taggable_id, :integer
end
- create_table "tags", :force => true do |t|
- t.column "name", :string
+ create_table :tags, :force => true do |t|
+ t.column :name, :string
t.column :taggings_count, :integer, :default => 0
end
- create_table "categorizations", :force => true do |t|
- t.column "category_id", :integer
- t.column "post_id", :integer
- t.column "author_id", :integer
+ create_table :categorizations, :force => true do |t|
+ t.column :category_id, :integer
+ t.column :post_id, :integer
+ t.column :author_id, :integer
end
add_column :posts, :taggings_count, :integer, :default => 0