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
During creation of the Utilities controller, I came upon a problem; the bans table in rift_core was not created during the original admin interface, meaning it wasn't accounted for in the generation portion of that interface for generating the code/autogen/coldefs.h file.
The specific problem plaguing that generation script is that there was no cast type for the datetime field type.
So I implemented a slight hack on line 378 of the genColDefs() method of the Utilities controller:
In short, I cast the datetime field to a string. I don't know if this will have problems later down the line, so here's the bug report to keep track of it.
The text was updated successfully, but these errors were encountered:
During creation of the Utilities controller, I came upon a problem; the
bans
table inrift_core
was not created during the original admin interface, meaning it wasn't accounted for in the generation portion of that interface for generating thecode/autogen/coldefs.h
file.The specific problem plaguing that generation script is that there was no cast type for the
datetime
field type.So I implemented a slight hack on line 378 of the
genColDefs()
method of the Utilities controller:In short, I cast the
datetime
field to a string. I don't know if this will have problems later down the line, so here's the bug report to keep track of it.The text was updated successfully, but these errors were encountered: