mirror of
https://git.asonix.dog/asonix/background-jobs.git
synced 2024-11-21 19:40:59 +00:00
7 lines
206 B
Bash
Executable file
7 lines
206 B
Bash
Executable file
#!/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
|