# CloverNovel **Repository Path**: shiinakisaki/clover-novel ## Basic Information - **Project Name**: CloverNovel - **Description**: 四叶草轻小说网站(仿哔哩轻小说) - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2024-09-19 - **Last Updated**: 2025-04-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # CloverNovel #### 介绍 四叶草轻小说网站(仿哔哩轻小说) #### 软件架构 HTML JavaScript CSS #### 数据库教程 新建数据库novaldata ```复制并粘贴下列代码 create table userdata ( UID int auto_increment comment '用户注册ID' primary key, username varchar(50) null comment '账户ID', nickname varchar(50) null comment '昵称', email varchar(100) null comment '邮箱', password varchar(64) null comment '密码', invitationcode varchar(50) null comment '邀请码', createTime datetime null comment '注册时间' `);