This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class MyCompany_MyModule_Model_MySql_Subscription | |
extends Mage_Core_Model_MySql4_Abstract { | |
public function _construct() { | |
// Table resource, primary key | |
$this->_init('mymodule/mymodule', 'customer_entity_id'); | |
// The primary key is not an auto_increment field | |
$this->_isPkAutoIncrement = false; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |