BUGFIX Float should always be not null and default 0 in the database

This commit is contained in:
Sean Harvey 2010-04-13 05:38:01 +00:00
parent e4f9c0387d
commit 0307d40a61

View File

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