Add script for updating diesel schema

This commit is contained in:
asonix 2023-09-03 22:02:33 -05:00
parent 00aa00c55c
commit ac9777782a

7
scripts/update-schema.sh Executable file
View file

@ -0,0 +1,7 @@
#!/usr/bin/env bash
diesel \
--database-url 'postgres://pictrs:1234@localhost:5432/pictrs' \
print-schema \
--custom-type-derives "diesel::query_builder::QueryId" \
> src/repo/postgres/schema.rs