cakephp-database-backup

DatabaseBackup is a CakePHP plugin to export, import and manage database backups

OTHER License

Downloads
20.1K
Stars
19
Committers
3

Bot releases are hidden (Show)

cakephp-database-backup - 2.1.0

Published by mirko-pagliai over 7 years ago

  • added support for Postgres databases;
  • all export() and import() methods have been moved to the Driver class;
  • added afterExport(), afterImport(), beforeExport() and beforeImport
    methods to the Driver class;
  • getCompression() and getExtension() moved from Driver to BackupTrait
    class, because these methods are not strictly related to the database engine
    you are using;
  • removed getValidExtensions() and getValidCompressions() methods from
    Driver class, because extensions and compressions are the same for any
    database engine;
  • removed getDefaultExtension() method from Driver class, because the
    default extension is the same for any database engine.
cakephp-database-backup - 2.0.0

Published by mirko-pagliai over 7 years ago

  • the plugin has been renamed as DatabaseBackup (cakephp-database-backup);
  • the code has been completely rewritten to work with drivers, so it can also
    work with other database engines;
  • added support for Sqlite database;
  • checks the return status code when it runs mysql and mysqldump from the
    command line.