Skip to content
This repository was archived by the owner on Sep 2, 2023. It is now read-only.

Commit 44e3e34

Browse files
author
Awbugl
committed
Update SqliteHelper.cs
1 parent c60bdb9 commit 44e3e34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Andreal.Core/Utils/SqliteHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ static SqliteHelper()
1313
SQLiteOpenFlags.ReadWrite | SQLiteOpenFlags.Create | SQLiteOpenFlags.SharedCache
1414
| SQLiteOpenFlags.FullMutex);
1515

16-
DbConnection.Execute("CREATE TABLE IF NOT EXISTS [BotUserInfo]([QQId] INTEGER PRIMARY KEY NOT NULL, [ArcId] INTEGER DEFAULT(-1), [PjskId] INTEGER DEFAULT(0),[IsHide] INTEGER DEFAULT(0), [IsText] INTEGER DEFAULT(0), [ImgVer] INTEGER DEFAULT(0));");
16+
DbConnection.Execute("CREATE TABLE IF NOT EXISTS [BotUserInfo]([QQId] INTEGER PRIMARY KEY NOT NULL, [ArcId] INTEGER DEFAULT(-1), [IsHide] INTEGER DEFAULT(0), [IsText] INTEGER DEFAULT(0), [ImgVer] INTEGER DEFAULT(0));");
1717
}
1818

1919
internal static IEnumerable<T> SelectAll<T>() where T : new() => DbConnection.Table<T>();

0 commit comments

Comments
 (0)