-
BackendPostgreSQL Diesel version2.2.0 Diesel Featurespostgres Operating System VersionLinux 6.14.0-111029-tuxedo x86_64 GNU/Linux Third party librariesserde = { version = "1.0", features = ["derive"] } What do you want to do?I have found a .diesel_lock file in the migrations directory after generate migration. Compile time errorNo response What code do you already have?No response Additional detailsNo response Checklist
|
Beta Was this translation helpful? Give feedback.
Answered by
weiznich
Oct 1, 2025
Replies: 1 comment 6 replies
-
|
This file is used by diesel-cli for ensuring that only instance of diesel-cli tries to generate migrations at the same time. If you delete that file it will be recreated on the next run of |
Beta Was this translation helpful? Give feedback.
6 replies
Answer selected by
YievCkim
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This file is used by diesel-cli for ensuring that only instance of diesel-cli tries to generate migrations at the same time. If you delete that file it will be recreated on the next run of
diesel migration generate. Otherwise nothing bad happens.