yii2-backup
yii2-backup copied to clipboard
Problem if Views exist
If Views exist in the database an error occurs in helpers\MysqlBackup.php because "SHOW TABLES" also lists Views.
Line 62 is now: $sql = 'SHOW TABLES'; it should be $sql = "SHOW FULL TABLES where Table_Type != 'VIEW'"; so that only Tables get scripted and saved...
Later on the scripting of Views but not their content could be added... ;-)
Regards Karl
Thanks @klikar3 . We shall update it in next release