Files
hortusfox-web/app/models/VersionModel.php
2024-05-31 12:31:15 +02:00

20 lines
388 B
PHP

<?php
/**
* Class VersionModel
*
* Used to query MySQL version
*/
class VersionModel extends \Asatru\Database\Model {
/**
* @return string
*/
public static function getSqlVersion()
{
try {
return static::raw('SELECT VERSION() AS version')->first()->get('version');
} catch (\Exception $e) {
return '';
}
}
}