doc: 在README.md链接wiki

This commit is contained in:
Rock Chin
2023-01-03 20:11:05 +08:00
parent f49262d98c
commit de869c3df8
2 changed files with 9 additions and 8 deletions

View File

@@ -49,14 +49,14 @@ class DatabaseManager:
)
""")
self.execute("""
create table if not exists `api_key_usage`(
`id` INTEGER PRIMARY KEY AUTOINCREMENT,
`key_md5` varchar(255) not null,
`timestamp` bigint not null,
`usage` bigint not null
)
""")
# self.execute("""
# create table if not exists `api_key_usage`(
# `id` INTEGER PRIMARY KEY AUTOINCREMENT,
# `key_md5` varchar(255) not null,
# `timestamp` bigint not null,
# `usage` bigint not null
# )
# """)
self.execute("""
create table if not exists `account_fee`(