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
Currently in the migration the slug is using string() function which is setting the column to varchar(255)
Needs to be changed to text() which not have limit
The text was updated successfully, but these errors were encountered:
The official documentation specifies a maximum length of 2048 characters for the element, which is used to submit URLs: URL of the page. This URL must begin with the protocol (e.g. “http”) and end with a trailing slash if required by the web server. This value must not exceed 2,048 characters.
… but this include the domain which is not part of the ‘slug’
Currently in the migration the slug is using
string()
function which is setting the column tovarchar(255)
Needs to be changed to
text()
which not have limitThe text was updated successfully, but these errors were encountered: