We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18266cd commit 6079761Copy full SHA for 6079761
README.md
@@ -26,6 +26,24 @@
26
> 1. `GitHub`登录之调用 `authorize`
27
> 2. `GitHub`登录之获取 用户信息`code``token``UserName`
28
> 3. 配置文件`application.properties`新增配置参数 GitHub.client 信息
29
-> 4. 使用spring boot 链接数据库并插入数据
+> 4. 使用 `MyBaits` 链接数据库并插入数据
30
>
31
32
+## 数据库脚本
33
+
34
+```sql
35
+-- ----------------------------
36
+-- Table structure for User
37
38
+CREATE TABLE "PUBLIC"."USER"(
39
40
+ "ID" INT DEFAULT AUTO_INCREMENT PRIMARY KEY NOT NULL,
41
+ "ACCOUNT_ID" VARCHAR,
42
+ "NAME" VARCHAR(100),
43
+ "TOKEN" CHAR(36),
44
+ "GMT_CREATE" BIGINT,
45
+ "GMT_MODIFIED" BIGINT
46
+)
47
48
+```
49
0 commit comments