Saving Data in a Central DB( Globally )using Expo

I am new to building Apps and hence trying to build one using Expo I have an App that takes picture using expo-image-picker and saves the image details to SQLite using const db = SQLite.openDatabase(“db.db”); CREATE TABLE IF NOT EXISTS insert into TABLENAME I also have a screen to render the images back from the DB. (which works!) As per my understanding the DB is created locally in the File system So User 1 and User 2 who are using the App will be seeing only the pictures uploaded by them. How can these details be merged to one DB like a global Database. ?