Example #1
0
function defineDatastoreTestStorage_RDBMS(Datastore $oDB)
{
    // define the storage for the models
    $oDB->storeModel('Test_Customer')->inTable('customers');
    /*
           $oDB->storeModel('Test_PremiumCustomer')
               ->inTable('premiumCustomers');
    */
    $oDB->storeModel('Test_Order')->inTable('orders');
    $oDB->storeModel('Test_OrderContent')->inTable('orderContents');
    $oDB->storeModel('Test_Product')->inTable('products');
    $oDB->storeModel('Test_RelatedProducts')->inTable('relatedProducts');
    $oDB->storeModel('Test_Product_Tag')->inTable('productTags');
}