Home > front end >  Rails Active Storage - Copy Files from one app to another
Rails Active Storage - Copy Files from one app to another

Time:09-27

Just a simple question (which probable isn't easy to answer) but can one copy all the Active Storage files from one app to another after cloning the postgresql database from the one app to the other?

CodePudding user response:

Copy the database (including the tables created by Active Storage) to your other application and also copy the files from the storage folder to the other app's storage folder.

  • Related