11 lines
248 B
PHP
11 lines
248 B
PHP
|
|
<?php
|
||
|
|
$db = \Config\Database::connect();
|
||
|
|
|
||
|
|
echo "Current migrations table:\n";
|
||
|
|
$results = $db->query("SELECT * FROM migrations")->getResult();
|
||
|
|
print_r($results);
|
||
|
|
|
||
|
|
echo "\nChecking for dict_ tables:\n";
|
||
|
|
$tables = $db->listTables();
|
||
|
|
print_r($tables);
|