-
Notifications
You must be signed in to change notification settings - Fork 0
Rename DBInstance schema name to include microservice name #3
Description
We currently have multiple microservices that use the same schema name, DBInstance. However, the contents of each schema are different, which can lead to confusion and potential errors. To resolve this, we need to rename the schema name to include the microservice name.
Specifically, we need to rename the DBInstance schema in the TAK microservice to TAK_DBInstance and the DBInstance schema in the PTT microservice to PTT_DBInstance. This will make it clear which microservice the schema belongs to and prevent any confusion or errors that may occur due to the same name being used for different contents.
To achieve this, we need to do the following:
- Update the PTT microservice to use the new schema name, PTT_DBInstance.
- Update any dependent code, such as SQL queries, to use the new schema names.
Once these changes are made, the DBInstance schema in each microservice will be renamed to include the microservice name, making it clear which schema belongs to which microservice.
Please let me know if you have any questions or concerns about this update.