Handy to add attributes to sales_flat_order:
$installer->getConnection()->addColumn(
$this->getTable('sales/order'),
'some_attribute',
[
'type' => Varien_Db_Ddl_Table::TYPE_INTEGER,
'length' => 1,
'comment'=> 'Comment'
]
);
Posted by Mike Whitby to Magento (2015-08-14 09:19)