startSetup(); /** * Change columns */ $tables = array( $installer->getTable('googlecheckout/notification') => array( 'columns' => array( 'serial_number' => array( 'type' => Varien_Db_Ddl_Table::TYPE_TEXT, 'length' => 64, 'nullable' => false, 'primary' => true, 'comment' => 'Serial Number' ), 'started_at' => array( 'type' => Varien_Db_Ddl_Table::TYPE_TIMESTAMP, 'comment' => 'Started At' ), 'status' => array( 'type' => Varien_Db_Ddl_Table::TYPE_SMALLINT, 'unsigned' => true, 'nullable' => false, 'default' => '0', 'comment' => 'Status' ) ), 'comment' => 'Google Checkout Notification Table' ) ); $installer->getConnection()->modifyTables($tables); $installer->endSetup();