yii2-menu icon indicating copy to clipboard operation
yii2-menu copied to clipboard

Error in the line 18 create_menu_table.php

Open cgamboa15 opened this issue 8 years ago • 1 comments

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 !!!

cgamboa15 avatar Jan 20 '17 17:01 cgamboa15