Skip to content

liziwei01/gin-file-download

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

github.com/liziwei01/gin-file-download

standard-readme compliant

This is a course project written by graduate student Ziwei Li from JHU

Interface

Mysql require

# In database db_idiary_user:

DROP table if exists `tb_user_private_info`;
create table `tb_user_private_info`(
    `user_id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'int',
    `email` varchar(255) NOT NULL DEFAULT '' COMMENT 'clear text',
    `password` varchar(2000) NOT NULL DEFAULT '' COMMENT 'hashed by bcrypt',
    `nickname` varchar(255) NOT NULL DEFAULT '' COMMENT 'clear text',
    `address` varchar(255) NOT NULL DEFAULT '' COMMENT 'client ip address',
    `profile` varchar(255) NOT NULL DEFAULT '' COMMENT 'generated file name uploading to aliyun OSS',
    `db_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT 'update time',
    primary key (`user_id`)
)ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='用户隐私信息表';

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published