From 074c069cf536b068e20bd10c41440d8a5eb08e4f Mon Sep 17 00:00:00 2001 From: Patrick McGuire Date: Sat, 9 Oct 2021 21:50:05 -0400 Subject: [PATCH] fixed typo --- scripts/createdb.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/createdb.sh b/scripts/createdb.sh index c3004a8..d080b8c 100755 --- a/scripts/createdb.sh +++ b/scripts/createdb.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash # test to create a database from bash mysql << 'EOF' -drop birds; +drop DATABASE birds; CREATE DATABASE IF NOT EXISTS birds; USE birds;