mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2024-11-01 18:19:56 +00:00
8 lines
204 B
Bash
8 lines
204 B
Bash
|
#!/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
|