├── .travis.yml ├── README.md ├── action-scheduler-custom-tables.php ├── codecov.yml ├── composer.json ├── src ├── DB_Logger.php ├── DB_Logger_Table_Maker.php ├── DB_Store.php ├── DB_Store_Migrator.php ├── DB_Store_Table_Maker.php ├── Dependencies.php ├── Hybrid_Store.php ├── Migration │ ├── Action_Migrator.php │ ├── Batch_Fetcher.php │ ├── Dry_Run_Action_Migrator.php │ ├── Dry_Run_Log_Migrator.php │ ├── Log_Migrator.php │ ├── Migration_Config.php │ ├── Migration_Runner.php │ └── Migration_Scheduler.php ├── Plugin.php ├── Table_Maker.php └── WP_CLI │ └── Migration_Command.php ├── tests ├── UnitTestCase.php ├── bootstrap.php ├── phpunit.xml.dist ├── phpunit │ ├── jobstore │ │ ├── DB_Store_Migrator_Test.php │ │ ├── DB_Store_Test.php │ │ └── Hybrid_Store_Test.php │ ├── logging │ │ └── DB_Logger_Test.php │ └── migration │ │ ├── Action_Migrator_Test.php │ │ ├── Batch_Fetcher_Test.php │ │ ├── Log_Migrator_Test.php │ │ ├── Migration_Config_Test.php │ │ ├── Migration_Runner_Test.php │ │ └── Migration_Scheduler_Test.php └── travis │ ├── setup.sh │ └── wp-tests-config.php └── vendor ├── autoload.php └── composer ├── ClassLoader.php ├── LICENSE ├── autoload_classmap.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php ├── autoload_static.php └── installed.json /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/README.md -------------------------------------------------------------------------------- /action-scheduler-custom-tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/action-scheduler-custom-tables.php -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/codecov.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/composer.json -------------------------------------------------------------------------------- /src/DB_Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/src/DB_Logger.php -------------------------------------------------------------------------------- /src/DB_Logger_Table_Maker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/src/DB_Logger_Table_Maker.php -------------------------------------------------------------------------------- /src/DB_Store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/src/DB_Store.php -------------------------------------------------------------------------------- /src/DB_Store_Migrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/src/DB_Store_Migrator.php -------------------------------------------------------------------------------- /src/DB_Store_Table_Maker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/src/DB_Store_Table_Maker.php -------------------------------------------------------------------------------- /src/Dependencies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/src/Dependencies.php -------------------------------------------------------------------------------- /src/Hybrid_Store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/src/Hybrid_Store.php -------------------------------------------------------------------------------- /src/Migration/Action_Migrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/src/Migration/Action_Migrator.php -------------------------------------------------------------------------------- /src/Migration/Batch_Fetcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/src/Migration/Batch_Fetcher.php -------------------------------------------------------------------------------- /src/Migration/Dry_Run_Action_Migrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/src/Migration/Dry_Run_Action_Migrator.php -------------------------------------------------------------------------------- /src/Migration/Dry_Run_Log_Migrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/src/Migration/Dry_Run_Log_Migrator.php -------------------------------------------------------------------------------- /src/Migration/Log_Migrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/src/Migration/Log_Migrator.php -------------------------------------------------------------------------------- /src/Migration/Migration_Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/src/Migration/Migration_Config.php -------------------------------------------------------------------------------- /src/Migration/Migration_Runner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/src/Migration/Migration_Runner.php -------------------------------------------------------------------------------- /src/Migration/Migration_Scheduler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/src/Migration/Migration_Scheduler.php -------------------------------------------------------------------------------- /src/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/src/Plugin.php -------------------------------------------------------------------------------- /src/Table_Maker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/src/Table_Maker.php -------------------------------------------------------------------------------- /src/WP_CLI/Migration_Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/src/WP_CLI/Migration_Command.php -------------------------------------------------------------------------------- /tests/UnitTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/tests/UnitTestCase.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/tests/phpunit.xml.dist -------------------------------------------------------------------------------- /tests/phpunit/jobstore/DB_Store_Migrator_Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/tests/phpunit/jobstore/DB_Store_Migrator_Test.php -------------------------------------------------------------------------------- /tests/phpunit/jobstore/DB_Store_Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/tests/phpunit/jobstore/DB_Store_Test.php -------------------------------------------------------------------------------- /tests/phpunit/jobstore/Hybrid_Store_Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/tests/phpunit/jobstore/Hybrid_Store_Test.php -------------------------------------------------------------------------------- /tests/phpunit/logging/DB_Logger_Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/tests/phpunit/logging/DB_Logger_Test.php -------------------------------------------------------------------------------- /tests/phpunit/migration/Action_Migrator_Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/tests/phpunit/migration/Action_Migrator_Test.php -------------------------------------------------------------------------------- /tests/phpunit/migration/Batch_Fetcher_Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/tests/phpunit/migration/Batch_Fetcher_Test.php -------------------------------------------------------------------------------- /tests/phpunit/migration/Log_Migrator_Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/tests/phpunit/migration/Log_Migrator_Test.php -------------------------------------------------------------------------------- /tests/phpunit/migration/Migration_Config_Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/tests/phpunit/migration/Migration_Config_Test.php -------------------------------------------------------------------------------- /tests/phpunit/migration/Migration_Runner_Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/tests/phpunit/migration/Migration_Runner_Test.php -------------------------------------------------------------------------------- /tests/phpunit/migration/Migration_Scheduler_Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/tests/phpunit/migration/Migration_Scheduler_Test.php -------------------------------------------------------------------------------- /tests/travis/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/tests/travis/setup.sh -------------------------------------------------------------------------------- /tests/travis/wp-tests-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/tests/travis/wp-tests-config.php -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/vendor/autoload.php -------------------------------------------------------------------------------- /vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/vendor/composer/LICENSE -------------------------------------------------------------------------------- /vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/action-scheduler-custom-tables/HEAD/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /vendor/composer/installed.json: -------------------------------------------------------------------------------- 1 | [] 2 | --------------------------------------------------------------------------------