2020-06-16 05:37:51 +02:00
|
|
|
#!/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
|
2020-06-16 05:37:51 +02:00
|
|
|
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
|
|
|
)
|