1
0
Fork 0

schema path fixed in configure-db.php

pull/13/head
Vitalii Vokhmin 9 years ago
parent f6e953765f
commit 1430a90147

@ -87,7 +87,7 @@ try {
}
catch (PDOException $e) {
echo 'Database table not found, applying schema... ' . PHP_EOL;
$schema = file_get_contents('schema/ttrss_schema_' . $config['DB_TYPE'] . '.sql');
$schema = file_get_contents('/var/www/schema/ttrss_schema_' . $config['DB_TYPE'] . '.sql');
$schema = preg_replace('/--(.*?);/', '', $schema);
$schema = preg_replace('/[\r\n]/', ' ', $schema);
$schema = trim($schema, ' ;');

Loading…
Cancel
Save