mirror of
https://git.asonix.dog/asonix/background-jobs.git
synced 2024-11-22 03:51:00 +00:00
8 lines
206 B
Bash
8 lines
206 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
diesel \
|
||
|
--database-url 'postgres://postgres:postgres@localhost:5432/db' \
|
||
|
print-schema \
|
||
|
--custom-type-derives "diesel::query_builder::QueryId" \
|
||
|
> jobs-postgres/src/schema.rs
|