voidwalker/scripts/gen_models.sh

9 lines
288 B
Bash
Raw Permalink Normal View History

#!/bin/bash
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
(
2023-05-30 18:17:46 +02:00
cd "$DIR/.."
go install github.com/volatiletech/sqlboiler/v4@latest
sqlboiler --no-rows-affected --no-auto-timestamps --no-hooks --no-tests --no-context --add-global-variants --add-panic-variants --wipe mysql
2023-05-30 18:17:46 +02:00
)