We’re migrating from a monolithic application to microservice and we use event sourcing and CQRS. Each service has its own read models. When a service needs to insert data, it fires an event. The services which use that data, will update their read models. The challenge I'm facing now is how to deal with static data. Back when we had a monolithic application, we had created some database scripts to insert these into the database. Now that every service has its own read model how should we insert this static data?
My database is postgresql.