LaysenseAuth/vendor/cakephp/database/Schema/PostgresSchema.php

11 lines
294 B
PHP
Raw Permalink Normal View History

2024-08-09 19:46:39 +05:30
<?php
declare(strict_types=1);
use function Cake\Core\deprecationWarning;
deprecationWarning(
'Since 4.1.0: Cake\Database\Schema\PostgresSchema is deprecated. ' .
'Use Cake\Database\Schema\PostgresSchemaDialect instead.'
);
class_exists('Cake\Database\Schema\PostgresSchemaDialect');