From 7ca1e9023cf2e0ced7c38171f95ba5d92ae6e9e1 Mon Sep 17 00:00:00 2001 From: knotteye Date: Sun, 20 Oct 2019 16:10:35 -0500 Subject: [PATCH] Fix a typo in db setup script. --- install/db_template.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/db_template.sql b/install/db_template.sql index 97c0f6d..41c050f 100644 --- a/install/db_template.sql +++ b/install/db_template.sql @@ -6,7 +6,7 @@ CREATE TABLE users( username VARCHAR(25), password_hash BINARY(60), stream_key CHAR(20), - record_flag TINYINT, + record_flag TINYINT ); CREATE TABLE user_meta( username VARCHAR(25),