Edc tables not created while using postgresql #4323
-
Beta Was this translation helpful? Give feedback.
Answered by
paullatzelsperger
Jul 3, 2024
Replies: 1 comment
-
EDC doesn't create tables automatically, you'll have to do that yourself. in the code base you'll find another way would be to use a tool like flyway or liquibase or something similar. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
jimmarino
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
EDC doesn't create tables automatically, you'll have to do that yourself. in the code base you'll find
schema.sql
files, which contain all the necessary table structures.another way would be to use a tool like flyway or liquibase or something similar.