Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
schema.sql 346 Bytes
Copy Edit Raw Blame History
drop table if exists user;
create table user (
user_id integer primary key autoincrement,
username text not null,
pw_hash text not null,
creation_time integer
);
drop table if exists library;
create table library (
lib_id integer primary key autoincrement,
paper_id text not null,
user_id integer not null,
update_time integer
);
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化