Skip to content

Instantly share code, notes, and snippets.

@muskie9
Last active August 29, 2015 14:14
Show Gist options
  • Save muskie9/b646b2d07c68eeaeec2e to your computer and use it in GitHub Desktop.
Save muskie9/b646b2d07c68eeaeec2e to your computer and use it in GitHub Desktop.
<?php
class OrderDetailDataExtension extends DataExtension {
private static $db = array(
'MyCustomField' => 'Varchar(50)'
);
public function onAfterWrite(){
parent::onBeforeWrite();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment