Hey guys, when a try to give a Lists->create() in a controller my method is return that the field id is required but a set he this way:
CREATE OR REPLACE TABLE tl_list(
id int unsigned not null auto_increment primary key,
name varchar,
...
);
if($n_list->create() === false){
echo "Error: xxx";
$messages = $n_list->getMessages();
foreach ($messages as $message) {
echo $message, "\n";
}
It can be a problem of cache?
I'am using PHP 7.1 and Maria DB.