From c097947164ae81357b0c614eb774ffdaa0f75b89 Mon Sep 17 00:00:00 2001 From: Laura Hausmann Date: Wed, 9 Feb 2022 18:32:16 +0100 Subject: [PATCH] Cleanup Migrations.cs --- Migrations.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Migrations.cs b/Migrations.cs index 34ba34e..1e9b666 100644 --- a/Migrations.cs +++ b/Migrations.cs @@ -10,7 +10,7 @@ using RTMPDash.Pages; namespace RTMPDash; public static class Migrations { - public const int DbVer = 2; + private const int DbVer = 2; private static readonly List _migrations = new() { new Migration(1, "ALTER TABLE Users ADD IsPrivate INTEGER DEFAULT 0 NOT NULL"),