Files
hldrCenter/server/database/local/user.db

15 lines
12 KiB
Plaintext
Raw Normal View History

2025-11-01 22:40:28 +08:00
SQLite format 3@ .v<>  <0A>? <0A><00>%##<01>tableauth_tokensauth_tokensCREATE TABLE auth_tokens
(
id integer not null /*autoincrement needs PK*/,
token Text(255),
user_id integer not null,
token_type TEXT(20) default 'access' not null,
is_revoked integer not null,
expire_at DATETIME not null,
created_at DATETIME not null
)<29>>''<01>;tableauth_sessionsauth_sessionsCREATE TABLE auth_sessions
2025-11-01 20:40:00 +08:00
(
id integer not null /*autoincrement needs PK*/,
session_id TEXT(128) not null,
列_name integer
2025-11-01 22:40:28 +08:00
)