mirror of
https://github.com/silverstripe/silverstripe-sqlite3
synced 2024-10-22 17:05:37 +02:00
MINOR Added SQLDatabaseConfigurationHelper::requireDatabaseVersion() as a stub method until it's implemented
This commit is contained in:
parent
46c903652a
commit
483da30a0f
@ -100,7 +100,6 @@ class SQLiteDatabaseConfigurationHelper implements DatabaseConfigurationHelper {
|
|||||||
$error = '';
|
$error = '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
return array(
|
return array(
|
||||||
'success' => $success,
|
'success' => $success,
|
||||||
'connection' => $conn,
|
'connection' => $conn,
|
||||||
@ -108,6 +107,13 @@ class SQLiteDatabaseConfigurationHelper implements DatabaseConfigurationHelper {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function requireDatabaseVersion($databaseConfig) {
|
||||||
|
return array(
|
||||||
|
'success' => true,
|
||||||
|
'error' => ''
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Ensure that the database connection is able to use an existing database,
|
* Ensure that the database connection is able to use an existing database,
|
||||||
* or be able to create one if it doesn't exist.
|
* or be able to create one if it doesn't exist.
|
||||||
|
Loading…
Reference in New Issue
Block a user