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
1 changed files with 1 additions and 1 deletions

View File

@ -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'];
}
/**