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"
This commit is contained in:
Sean Harvey 2013-04-25 11:28:05 +12:00
parent fc3df54eab
commit 55c56b9b66

View File

@ -1054,7 +1054,7 @@ class MSSQLDatabase extends SS_Database {
* @return string * @return string
*/ */
public function float($values) { public function float($values) {
return 'float not null default ' . $values['default']; return 'float(53) not null default ' . $values['default'];
} }
/** /**