mirror of
https://github.com/silverstripe/silverstripe-mssql
synced 2024-10-22 06:05:53 +00:00
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:
parent
fc3df54eab
commit
55c56b9b66
@ -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'];
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user