Changeset 228

Show
Ignore:
Timestamp:
01/14/06 10:16:31 (3 years ago)
Author:
lazyatom
Message:

Merged changes from 1.0.5 release into main plugin

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/engines/CHANGELOG

    r214 r228  
    11*SVN* 
     2 
     31.0.5 
     4- Fixed bug stopping fixtures from loading with PostgreSQL 
     5 
     61.0.4 
     7- Another attempt at loading controllers within modules (Ticket #56) 
    28 
    391.0.3 
  • plugins/engines/lib/testing_extensions.rb

    r177 r228  
    126126        # Cap primary key sequences to max(pk). 
    127127        if connection.respond_to?(:reset_pk_sequence!) 
    128           fixture_groups.each do |table_name
    129             connection.reset_pk_sequence!(table_name) 
     128          fixture_groups.each do |fg
     129            connection.reset_pk_sequence!(fg.table_name) 
    130130          end 
    131131        end