spqr/vendor/cakephp/database/Schema/MysqlSchema.php

11 lines
285 B
PHP
Raw Normal View History

2024-11-05 12:10:06 +08:00
<?php
declare(strict_types=1);
use function Cake\Core\deprecationWarning;
deprecationWarning(
'Since 4.1.0: Cake\Database\Schema\MysqlSchema is deprecated. ' .
'Use Cake\Database\Schema\MysqlSchemaDialect instead.'
);
class_exists('Cake\Database\Schema\MysqlSchemaDialect');