Merge pull request #8727 from jchenevey/patch-1

Update 04_Data_Types_and_Casting.md
This commit is contained in:
Robbie Averill 2019-01-15 17:04:30 +01:00 committed by GitHub
commit a65a4b2505
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -91,7 +91,7 @@ class Car extends DataObject
private static $db = [
'Wheels' => 'Int(4)',
'Condition' => 'Enum(array("New","Fair","Junk"), "New")',
'Make' => 'Varchar(["default" => "Honda"]),
'Make' => 'Varchar(["default" => "Honda"])',
);
}
```