Make admin user actually admin

This commit is contained in:
Laura Hausmann 2022-03-03 01:14:55 +01:00
parent 7b9331daae
commit e7da0bdd06
Signed by: zotan
GPG Key ID: D044E84C5BE01605
1 changed files with 3 additions and 2 deletions

View File

@ -41,7 +41,8 @@ public static class Migrations {
PronounSubject = "they", PronounSubject = "they",
PronounPossessive = "their", PronounPossessive = "their",
PronounPlural = true, PronounPlural = true,
AllowRestream = true AllowRestream = true,
IsAdmin = true
}); });
Console.ForegroundColor = ConsoleColor.Green; Console.ForegroundColor = ConsoleColor.Green;
Console.Write("The user "); Console.Write("The user ");
@ -112,4 +113,4 @@ public static class Migrations {
db.Execute(_sql); db.Execute(_sql);
} }
} }
} }