do i need to do a schema pull or something?
# orm-help
v
do i need to do a schema pull or something?
1
j
you can create in different database in the same instance
🚀 1
For example
Copy code
postgresql://${POSTGRES_INTERNAL_USERNAME}:${POSTGRES_INTERNAL_PASSWORD}@${POSTGRES_INTERNAL_SERVER_URL}:${POSTGRES_INTERNAL_SERVER_PORT}/firstDB?schema=public
Then you can create another schema file
Copy code
postgresql://${POSTGRES_INTERNAL_USERNAME}:${POSTGRES_INTERNAL_PASSWORD}@${POSTGRES_INTERNAL_SERVER_URL}:${POSTGRES_INTERNAL_SERVER_PORT}/secondDB?schema=public
v
awesome. thank you
j
You're welcome