yii2-menu
yii2-menu copied to clipboard
Error in the line 18 create_menu_table.php
Hi, there is a bug migrating the data, the variable $table should be called like $this->table.
$this->createTable($table, [//error displayed 'menu_id' => $this->primaryKey(), 'menu' => $this->text()->notNull(), ], $options); }
Like this way: $this->createTable($this->table, [//good!!! 'menu_id' => $this->primaryKey(), 'menu' => $this->text()->notNull(), ], $options); }
thanks a lot !!!