- تاریخ ثبتنام
- 2020-06-26
- نوشتهها
- 21,408
- راهحلها
- 27
- پسندها
- 3,264
- امتیازها
- 113
- سن
- 27
- محل سکونت
- England
- وب سایت
- xenforo.xyz
Given the example code:
PHP:
It will generate the following (invalid) SQL:
SQL:
The issue is
SQL:
PHP:
It will generate the following (invalid) SQL:
SQL:
The issue is
XF\Db\Schema\Column::values()
, doesn't handle null
sanely, and converts it into [null]
unlike all the other fluent functions for XF\Db\Schema\Column
SQL:
public function...