sintonia/livesupport/modules/storageAdmin/bin/php/dumpDbSchema.php
2005-06-08 13:40:30 +00:00

8 lines
No EOL
199 B
PHP

<?
require_once 'conf.php';
require_once "$storageServerPath/var/conf.php";
header("Conten-type: text/plain");
$dbname = $config['dsn']['database'];
$res = `pg_dump -s $dbname`;
echo "$res\n";
?>