sintonia/utils/dumpDbSchema.php
paul.baranowski d9c6971131 CC-1695 Remove Campcaster Studio and make install easier
Removed more stuff and started creating new directory structure.
2010-09-30 15:32:02 -04:00

10 lines
No EOL
295 B
PHP

<?
require_once('conf.php');
require_once("$STORAGE_SERVER_PATH/var/conf.php");
header("Conten-type: text/plain");
$dbname = $CC_CONFIG['dsn']['database'];
$dbuser = $CC_CONFIG['dsn']['username'];
$dbhost = $CC_CONFIG['dsn']['hostspec'];
$res = `pg_dump -s $dbname -U $dbuser`;
echo "$res\n";
?>