Hi
In a table I have a column named 'source'.
Phalcon returns an error when I want to save a record in this table
my code:
$params = array(
'ID' => NULL,
'user_code' => USER_CODE,
'source' => $source,
'question' => $question,
'true_answer' => $trueAnswer,
'answers' => $answers,
'date_added' => $this->dateTime->getDate(),
'status' => 'pending',
'score' => 0
);
if ($sugg->save($params) == true)
{
If I change the 'source' columns name everything get ok
sorry if my English is'nt very well ^-^