* [highgo] Cast type

This commit is contained in:
朱金勇
2025-10-17 18:03:17 +08:00
committed by Gitfox
parent 5cf210c47b
commit 8a80b82cd3
+2 -2
View File
@@ -16,8 +16,8 @@ $schema->tables['build'] = 'zt_build';
$schema->joins = array();
$schema->joins['product'] = '`release`.`product` = `product`.`id`';
$schema->joins['project'] = '`release`.`project` = `project`.`id`';
$schema->joins['build'] = '`release`.`build` = `build`.`id`';
$schema->joins['project'] = 'CAST(`release`.`project` AS DECIMAL) = `project`.`id`';
$schema->joins['build'] = 'CAST(`release`.`build` AS DECIMAL) = `build`.`id`';
$schema->fields = array();
$schema->fields['id'] = array('type' => 'number', 'name' => $this->lang->release->id);