Changeset 4812

Show
Ignore:
Timestamp:
08/26/08 00:39:33 (5 months ago)
Author:
jwage
Message:

Turning portability off by default.

Location:
branches/1.0
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • branches/1.0/lib/Doctrine/Manager.php

    r4659 r4812  
    9797                        Doctrine::ATTR_QUOTE_IDENTIFIER         => false, 
    9898                        Doctrine::ATTR_SEQCOL_NAME              => 'id', 
    99                         Doctrine::ATTR_PORTABILITY              => Doctrine::PORTABILITY_ALL, 
     99                        Doctrine::ATTR_PORTABILITY              => Doctrine::PORTABILITY_NONE, 
    100100                        Doctrine::ATTR_EXPORT                   => Doctrine::EXPORT_ALL, 
    101101                        Doctrine::ATTR_DECIMAL_PLACES           => 2, 
  • branches/1.0/tests/ConfigurableTestCase.php

    r4029 r4812  
    114114    } 
    115115    public function testDefaultPortabilityAttributeValueIsAll() { 
    116         $this->assertEqual($this->manager->getAttribute(Doctrine::ATTR_PORTABILITY), Doctrine::PORTABILITY_ALL); 
     116        $this->assertEqual($this->manager->getAttribute(Doctrine::ATTR_PORTABILITY), Doctrine::PORTABILITY_NONE); 
    117117    } 
    118118    public function testPortabilityAttributeAcceptsPortabilityConstants() {