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
Considering I have a table named article, the outputted table_name when used with --add-table-name option is string, eg. #[diesel(table_name = "article")]. But it should actually be something like #[diesel(table_name = crate::schema::article)].
The text was updated successfully, but these errors were encountered:
I am using diesel 2.0.2.
Considering I have a table named
article
, the outputtedtable_name
when used with--add-table-name
option is string, eg.#[diesel(table_name = "article")]
. But it should actually be something like#[diesel(table_name = crate::schema::article)]
.The text was updated successfully, but these errors were encountered: