From 0df3248fb68bfec5e166fbe2fc104698f16f2fa1 Mon Sep 17 00:00:00 2001 From: Dav Glass Date: Sun, 1 Jan 2017 08:12:42 -0600 Subject: [PATCH] added RecordAudio to sql in README --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c6ca5e34b..9295c5779 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,8 @@ Thanks to @chriswiggins and @mastertheknife for their work, @SteveGilvarry is no ``` ALTER TABLE `Monitors` ADD `SaveJPEGs` TINYINT NOT NULL DEFAULT '3' AFTER `Deinterlacing` , ADD `VideoWriter` TINYINT NOT NULL DEFAULT '0' AFTER `SaveJPEGs` , -ADD `EncoderParameters` TEXT NOT NULL AFTER `VideoWriter` ; +ADD `EncoderParameters` TEXT NOT NULL AFTER `VideoWriter` , +ADD `RecordAudio` TINYINT NOT NULL DEFAULT '0' AFTER `EncoderParameters` ; ALTER TABLE `Events` ADD `DefaultVideo` VARCHAR( 64 ) NOT NULL AFTER `AlarmFrames` ; ```