by Joe Keilholz.
This has been resolved. Took to the CLI (specifically moosh) to run a course restore and the issue immediately identified itself. Essentially a field in the go1 table was defined as not null and didn't have a default value defined. That of course would cause any RDBMS to error out.
Unfortunately, the insert statement didn't have reference to the field and instead of mucking with the code to add that field in, added a default value for the field in the schema and worked fine afterwards.
Unfortunately, the insert statement didn't have reference to the field and instead of mucking with the code to add that field in, added a default value for the field in the schema and worked fine afterwards.