瀏覽代碼

修改主键问题

liaofei 2 年之前
父節點
當前提交
6c02390071
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. 3 0
      crmeb/app/services/system/SystemCrudServices.php

+ 3 - 0
crmeb/app/services/system/SystemCrudServices.php

@@ -781,6 +781,9 @@ class SystemCrudServices extends BaseServices
         $table = new Table($tableName, ['comment' => $tableComment], $this->getAdapter());
         //创建字段
         foreach ($tableField as $item) {
+            if (isset($item['primaryKey']) && $item['primaryKey']) {
+                continue;
+            }
             $option = [];
             if (isset($item['limit'])) {
                 $option['limit'] = (int)$item['limit'];