Cleanup Migrations.cs

This commit is contained in:
Laura Hausmann 2022-02-09 18:32:16 +01:00
parent a15347e28c
commit c097947164
Signed by: zotan
GPG Key ID: D044E84C5BE01605
1 changed files with 1 additions and 1 deletions

View File

@ -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<Migration> _migrations = new() {
new Migration(1, "ALTER TABLE Users ADD IsPrivate INTEGER DEFAULT 0 NOT NULL"),