MediaWiki REL1_37
MWMySQLPlatform.php
Go to the documentation of this file.
1<?php
2
7namespace Wikimedia\Rdbms;
8
9use Doctrine\DBAL\Platforms\MySQLPlatform;
10
11class MWMySQLPlatform extends MySQLPlatform {
12
16 public function getFloatDeclarationSQL( array $column ) {
17 $double = $column['doublePrecision'] ?? false;
18 $unsigned = $column['unsigned'] ?? false;
19
20 $sql = $double ? 'DOUBLE PRECISION' : 'FLOAT';
21
22 return $sql . ( $unsigned ? ' UNSIGNED' : '' );
23 }
24}