Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign upProblems with `insertable_into` for table with underscore in name #285
Comments
This comment has been minimized.
freiguy1
commented
Apr 20, 2016
|
Ugh figured it out. |
freiguy1
closed this
Apr 20, 2016
This comment has been minimized.
|
There actually is something I'd like to address here. That error message isn't as helpful as it could be. It should be something along the lines of |
This comment has been minimized.
|
(Unsure if we can actually make that happen in this context though) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
freiguy1 commentedApr 20, 2016
I've a table called game_location. I've some rust code looking like this:
Here's my up.sql migration:
I'm using
insertable_intoand diesel for 3 other tables and all went swimmingly. Now I'm having issues with this particular one, but it's the first table with an underscore in the name.Here is the error output:
Am I doing something incorrectly? Thanks!