gpt4 book ai didi

mysql - Magento 将自定义列添加到订单

转载 作者:行者123 更新时间:2023-11-29 10:22:42 25 4
gpt4 key购买 nike

我正在尝试为 magento 中的每个订单保存 google cookie。

我想添加新列,例如“google_cookie”到我的表格中。我怎样才能做到这一点?

哪个表应该更新?是 sales_flat_order 吗?

最佳答案

<?php

$installer = $this;
$connection = $installer->getConnection();
$installer->startSetup();

$tableSales = $this->getTable('sales_flat_order');

if ($connection->tableColumnExists($tableSales, 'google_cookie') === false) {
$connection->addColumn(
$tableSales,
'google_cookie',
'varchar(255) Default Null'
);
}

$installer->endSetup();

使用上述脚本添加新列并根据您的要求保存数据

关于mysql - Magento 将自定义列添加到订单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48937059/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com