Skip to content

Commit

Permalink
Add sessionskip field to tempvoicesession table
Browse files Browse the repository at this point in the history
The tempvoicesession table in the database now includes a sessionskip field. This change was reflected in the DatabaseService by altering the corresponding SQL command that creates the table. This new field will be useful for handling functionality related to skipping sessions.
  • Loading branch information
FabiChan99 committed Dec 27, 2023
1 parent cfb033d commit 690a74b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Services/DatabaseService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ public static async Task InitializeDatabaseTables()
},
{
"tempvoicesession",
"CREATE TABLE tempvoicesession (userid BIGINT, channelname VARCHAR, channelbitrate INTEGER, channellimit INTEGER, blockedusers VARCHAR, permitedusers VARCHAR, locked BOOLEAN, hidden BOOLEAN)"
"CREATE TABLE tempvoicesession (userid BIGINT, channelname VARCHAR, channelbitrate INTEGER, channellimit INTEGER, blockedusers VARCHAR, permitedusers VARCHAR, locked BOOLEAN, hidden BOOLEAN, sessionskip BOOLEAN)"
},
{ "vorstellungscooldown", "CREATE TABLE vorstellungscooldown (user_id BIGINT, time BIGINT)" },
{ "warnreasons", "CREATE TABLE warnreasons (reason TEXT, custom_id VARCHAR)" },
Expand Down

0 comments on commit 690a74b

Please sign in to comment.