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
In newer versions of mySQL the following line generates an error with default mySQL configurations because TEXT mySQL fields are not allowed to have a default value.
$schema['raw'] = "TEXT NOT NULL DEFAULT ''"; // raw google geocode data
The issue can be fixed by not setting a default.
The text was updated successfully, but these errors were encountered:
In newer versions of mySQL the following line generates an error with default mySQL configurations because TEXT mySQL fields are not allowed to have a default value.
$schema['raw'] = "TEXT NOT NULL DEFAULT ''"; // raw google geocode data
The issue can be fixed by not setting a default.
The text was updated successfully, but these errors were encountered: