Move sql file into own folder

Change-Id: I12ed78d755426644011fca7595dd82192825859f
This commit is contained in:
Umherirrender 2019-03-08 21:41:35 +01:00
parent e649f3029b
commit e47e471799
2 changed files with 1 additions and 1 deletions

View file

@ -33,7 +33,7 @@ class Hooks {
* @param DatabaseUpdater $updater
*/
public static function onLoadExtensionSchemaUpdates( DatabaseUpdater $updater ) {
$dir = dirname( __DIR__ );
$dir = dirname( __DIR__ ) . '/sql';
$updater->addExtensionTable( 'linter', "$dir/linter.sql" );
}