mirror of
https://github.com/danielbrendel/hortusfox-web.git
synced 2026-01-02 02:40:23 -06:00
20 lines
388 B
PHP
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 '';
|
|
}
|
|
}
|
|
} |