Browse Source

Fixed typo in internals/ar.md.

tags/2.0.0-beta
resurtm 12 years ago
parent
commit
7fa9f113ee
  1. 4
      docs/internals/ar.md

4
docs/internals/ar.md

@ -28,13 +28,13 @@ public function scenarios()
// 4. insert and update operations will be wrapped with transaction, delete won't // 4. insert and update operations will be wrapped with transaction, delete won't
'scenario4' => array( 'scenario4' => array(
'attributes' => array('attribute1', 'attribute2'), 'attributes' => array('attribute1', 'attribute2'),
'atomic' => array(self::INSERT, self::UPDATE), 'atomic' => array(self::OPERATION_INSERT, self::OPERATION_UPDATE),
), ),
// 5. insert and update operations won't be wrapped with transaction, delete will // 5. insert and update operations won't be wrapped with transaction, delete will
'scenario5' => array( 'scenario5' => array(
'attributes' => array('attribute1', 'attribute2'), 'attributes' => array('attribute1', 'attribute2'),
'atomic' => array(self::DELETE), 'atomic' => array(self::OPERATION_DELETE),
), ),
); );
} }

Loading…
Cancel
Save