feat: include migrations in binary

Lets us change the schema and not worry about instance admins having to manually update their DB!
This commit is contained in:
Radical 2025-05-22 16:29:57 +02:00
parent 2e1382c1d4
commit c1885210fb
3 changed files with 21 additions and 5 deletions

3
build.rs Normal file
View file

@ -0,0 +1,3 @@
fn main() {
println!("cargo:rerun-if-changed=migrations");
}