Try this code instead :
$installer = $this;
$installer->startSetup();
$installer->getConnection()
->addColumn($installer->getTable('sales/quote_item'), 'customized_product_solitaire', array(
'type' => Varien_Db_Ddl_Table::TYPE_INTEGER,
'nullable' => false,
'length' => 1
));
$installer->getConnection()
->addColumn($installer->getTable('sales/order_item'), 'customized_product_solitaire', array(
'type' => Varien_Db_Ddl_Table::TYPE_INTEGER,
'nullable' => false,
'length' => 1
));