Skip to content

zlmgit/community

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Getting Started

Reference Documentation

For further reference, please consider the following sections:

Guides

The following guides illustrate how to use some features concretely:

脚本

create database user default character set utf8;
CREATE TABLE `user`.`user` (
  `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id',
  `account_id` int(11) DEFAULT NULL COMMENT 'git账户Id',
  `name` varchar(20) DEFAULT NULL COMMENT 'git昵称',
  `token` varchar(50) DEFAULT NULL COMMENT '登录持久化令牌',
  `avatar_url` varchar(250) DEFAULT NULL COMMENT '图像',
  `create_ti` bigint(17) DEFAULT NULL COMMENT '创建时间',
  `modify_ti` bigint(17) DEFAULT NULL COMMENT '修改时间',
  `version` int(4) DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8;
CREATE TABLE `user`.`question` (
  `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id',
  `title` varchar(255) DEFAULT NULL COMMENT '标题',
  `description` varchar(1000) DEFAULT NULL COMMENT '描述',
  `creator` int(11) DEFAULT NULL COMMENT '发起人',
  `comment_count` int(11) DEFAULT '0' COMMENT '评论数',
  `view_count` int(11) DEFAULT '0' COMMENT '浏览数',
  `like_count` int(11) DEFAULT '0' COMMENT '点赞数',
  `tag` varchar(250) DEFAULT NULL COMMENT '标签',
  `create_ti` bigint(17) DEFAULT NULL COMMENT '创建时间',
  `modify_ti` bigint(20) DEFAULT NULL COMMENT '修改时间',
  `version` int(11) DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='问题表';

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published