From 87898badba211540d9c1d4dae0cd513a9d525554 Mon Sep 17 00:00:00 2001 From: Jamis Buck Date: Thu, 9 Mar 2006 17:23:57 +0000 Subject: Allow counter_cache to accept a column name git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3825 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activerecord/test/fixtures/db_definitions/schema.rb | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'activerecord/test/fixtures/db_definitions') 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 -- cgit v1.2.3