i have a Node.js app deployed to Railway. it uses a sqlite database. initially the database is empty
i'm getting "database is locked" on deploy because my deploy script ends up trying to create the database tables concurrently from two processes, and sqlite doesn't like that
what's the proper fix?
10 days ago