fix: BIG INTEGER -> BIGINT
This commit is contained in:
parent
864f38f0da
commit
661b80bcb4
1 changed files with 2 additions and 2 deletions
|
@ -195,8 +195,8 @@ impl Database {
|
||||||
"CREATE TABLE IF NOT EXISTS events (
|
"CREATE TABLE IF NOT EXISTS events (
|
||||||
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||||
service INTEGER NOT NULL,
|
service INTEGER NOT NULL,
|
||||||
time BIG INTEGER NOT NULL,
|
time BIGINT NOT NULL,
|
||||||
value BIG INTEGER NULL
|
value BIGINT NULL
|
||||||
)", params![]
|
)", params![]
|
||||||
)?;
|
)?;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue