start schema version 7 (#155)

This isn't yet any different than schema version 6.
This commit is contained in:
Scott Lamb
2021-08-31 20:57:16 -07:00
parent 981a91c425
commit 33b3b669df
5 changed files with 521 additions and 7 deletions

View File

@@ -0,0 +1,10 @@
// This file is part of Moonfire NVR, a security camera network video recorder.
// Copyright (C) 2021 The Moonfire NVR Authors; see AUTHORS and LICENSE.txt.
// SPDX-License-Identifier: GPL-v3.0-or-later WITH GPL-3.0-linking-exception
/// Upgrades a version 6 schema to a version 7 schema.
use failure::Error;
pub fn run(_args: &super::Args, _tx: &rusqlite::Transaction) -> Result<(), Error> {
Ok(())
}