From e7da0bdd0626f343ecba4e8fa766126f677be975 Mon Sep 17 00:00:00 2001 From: Laura Hausmann Date: Thu, 3 Mar 2022 01:14:55 +0100 Subject: [PATCH] Make admin user actually admin --- Migrations.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Migrations.cs b/Migrations.cs index 1e9b666..529d9b4 100644 --- a/Migrations.cs +++ b/Migrations.cs @@ -41,7 +41,8 @@ public static class Migrations { PronounSubject = "they", PronounPossessive = "their", PronounPlural = true, - AllowRestream = true + AllowRestream = true, + IsAdmin = true }); Console.ForegroundColor = ConsoleColor.Green; Console.Write("The user "); @@ -112,4 +113,4 @@ public static class Migrations { db.Execute(_sql); } } -} \ No newline at end of file +}