Add basic SQLx

This commit is contained in:
traxys 2023-08-14 18:26:38 +02:00
parent 886df477a8
commit c7e3468acc
6 changed files with 1036 additions and 11 deletions

5
build.rs Normal file
View file

@ -0,0 +1,5 @@
// generated by `sqlx migrate build-script`
fn main() {
// trigger recompilation when a new migration is added
println!("cargo:rerun-if-changed=migrations");
}