- git commit --amend --no-edit
github OAuth Spring_文档 Spring web es Github deploy key Bootstrap thymeleaf
create table USER_NAME
(
ID INTEGER auto_increment,
ACCOUNT_ID VARCHAR(100),
NAME VARCHAR(50),
TOKEN VARCHAR(36),
GMT_CREATE BIGINT,
GMT_MODIFIED BIGINT,
AC_TOKEN VARCHAR(100),
BIO VARCHAR(256),
constraint USER_NAME_PK
primary key (ID)
);
create table comment
(
id bigint auto_increment,
parent_id bigint not null,
type int not null,
commentator int not null,
gmt_create bigint not null,
gmt_modified bigint,
like_count bigint default 0,
constraint COMMENT_PK
primary key (id)
);
mvn flyway:migrate
mvn -D mybatis.generator.overwrite=true mybatis-generator:generate