From 55c56b9b665819f1c5fe4b7eaf07041950620c0e Mon Sep 17 00:00:00 2001 From: Sean Harvey Date: Thu, 25 Apr 2013 11:28:05 +1200 Subject: [PATCH] default float spec to 53 so dev/build doesn't continually show as changed otherwise it continually shows as changed from "float(53) not null..." to "float not null" --- code/MSSQLDatabase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/MSSQLDatabase.php b/code/MSSQLDatabase.php index 9d4b90d..39066ca 100644 --- a/code/MSSQLDatabase.php +++ b/code/MSSQLDatabase.php @@ -1054,7 +1054,7 @@ class MSSQLDatabase extends SS_Database { * @return string */ public function float($values) { - return 'float not null default ' . $values['default']; + return 'float(53) not null default ' . $values['default']; } /**