我想在这里添加一个新字段:http://prntscr.com/mdliq6
1。将新列“ new_field” 添加到数据库表 ps_attribute_lang ,其类型为varchar(1000)
在文件/classes/Attribute.php中添加以下行
public $ new_field;
在同一文件中添加以下行
'new_field'=> array('type'=> self :: TYPE_STRING,'lang'=> true,'validate'=>'isGenericName','required'=> true,'size'=> 2000) ,
此行之后
'name' => array('type' => self::TYPE_STRING, 'lang' => true, 'validate' => 'isGenericName', 'required' => true, 'size' => 128),
现在我有一个问题,因为我不知道我应该采取什么进一步的措施,有人可以帮助我吗?