├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── rector.php ├── sql ├── mysql-down.sql ├── mysql-up.sql ├── oci-down.sql ├── oci-up.sql ├── pgsql-down.sql ├── pgsql-up.sql ├── sqlite-down.sql ├── sqlite-up.sql ├── sqlsrv-down.sql └── sqlsrv-up.sql └── src ├── DbCache.php ├── DbSchemaManager.php └── InvalidArgumentException.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/cache-db/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/cache-db/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/cache-db/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/cache-db/HEAD/composer.json -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/cache-db/HEAD/rector.php -------------------------------------------------------------------------------- /sql/mysql-down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE `yii_cache`; 2 | -------------------------------------------------------------------------------- /sql/mysql-up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/cache-db/HEAD/sql/mysql-up.sql -------------------------------------------------------------------------------- /sql/oci-down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE "yii_cache"; 2 | -------------------------------------------------------------------------------- /sql/oci-up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/cache-db/HEAD/sql/oci-up.sql -------------------------------------------------------------------------------- /sql/pgsql-down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE "yii_cache"; 2 | -------------------------------------------------------------------------------- /sql/pgsql-up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/cache-db/HEAD/sql/pgsql-up.sql -------------------------------------------------------------------------------- /sql/sqlite-down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE `yii_cache`; 2 | -------------------------------------------------------------------------------- /sql/sqlite-up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/cache-db/HEAD/sql/sqlite-up.sql -------------------------------------------------------------------------------- /sql/sqlsrv-down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE [yii_cache]; 2 | -------------------------------------------------------------------------------- /sql/sqlsrv-up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/cache-db/HEAD/sql/sqlsrv-up.sql -------------------------------------------------------------------------------- /src/DbCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/cache-db/HEAD/src/DbCache.php -------------------------------------------------------------------------------- /src/DbSchemaManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/cache-db/HEAD/src/DbSchemaManager.php -------------------------------------------------------------------------------- /src/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/cache-db/HEAD/src/InvalidArgumentException.php --------------------------------------------------------------------------------