Removed useless 'project_id' column from 'build_meta' table.

This commit is contained in:
Dmitry Khomutov 2017-10-15 00:48:53 +07:00
commit 9e57de043e
7 changed files with 36 additions and 160 deletions

View file

@ -775,7 +775,7 @@ class Build extends Model
public function storeMeta($key, $value)
{
$value = json_encode($value);
Factory::getStore('Build')->setMeta($this->getProjectId(), $this->getId(), $key, $value);
Factory::getStore('Build')->setMeta($this->getId(), $key, $value);
}
/**