You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MySQL supports fractional seconds to a precision of 6 figures on TIME, DATETIME and TIMESTAMP columns (e.g. 2014-02-10 13:54:30.123456).
However, Eloquent seems to ignore the microseconds. E.g. if the value is '2014-02-10 13:54:30.123456' in the database, Eloquent simply returns '2014-02-10 13:54:30'.
On a related note, the MySQL schema builder doesn't support specifying the fractional seconds precision for these column types.