✏️ 正在编辑: upgrade-2.3.1.php
路径:
/home/bpioifn/www/pigmentse/modules/productquotation/upgrade/upgrade-2.3.1.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php /** * DISCLAIMER * * Do not edit or add to this file. * You are not authorized to modify, copy or redistribute this file. * Permissions are reserved by FME Modules. * * @author FMM Modules * @copyright FME Modules 2018 * @license Single domain */ if (!defined('_PS_VERSION_')) { exit; } function upgrade_module_2_3_1($module) { $module = $module; if (columnExist('name')) { return true; } else { Db::getInstance()->execute('ALTER TABLE `'._DB_PREFIX_.'fmm_quote_fee` ADD `name` text'); } return true; } function columnExist($column_name) { $columns = Db::getInstance()->ExecuteS('SELECT COLUMN_NAME FROM information_schema.columns WHERE table_schema = "'._DB_NAME_.'" AND table_name = "'._DB_PREFIX_.'fmm_quote_fee"'); if (isset($columns) && $columns) { foreach ($columns as $column) { if ($column['COLUMN_NAME'] == $column_name) { return true; } } } return false; }
💾 保存文件
← 返回文件管理器