fix sql typo
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-01-08 09:58:23 +11:00
parent 04bf8270bb
commit 71c5de3762
2 changed files with 4 additions and 1 deletions

View File

@@ -84,6 +84,9 @@ steps:
- name: dell-deploy
# # https://github.com/cschlosser/drone-ftps/blob/master/README.md
image: cschlosser/drone-ftps
when:
event:
- tag
environment:
FTP_USERNAME:
from_secret: FTP_USERNAME

View File

@@ -45,7 +45,7 @@ const createUsers string = `
`
const createSafes string = `
CREATE TABLE IF NOT EXSITS safes (
CREATE TABLE IF NOT EXISTS safes (
SafeId INTEGER PRIMARY KEY ASC,
SafeName VARCHAR
);