-
I have the following migration: CREATE SCHEMA myschema;
CREATE TABLE myschema.Person (
PersonId bigint PRIMARY KEY,
Name text NOT NULL,
Code text NOT NULL,
Token text NOT NULL
); After running |
Beta Was this translation helpful? Give feedback.
Answered by
weiznich
Dec 17, 2021
Replies: 1 comment 1 reply
-
You need to configure diesel cli to use the right database schema to generate the corresponding schema.rs file. Checkout this guide for details. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
NilsIrl
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You need to configure diesel cli to use the right database schema to generate the corresponding schema.rs file. Checkout this guide for details.