25 lines
656 B
C
25 lines
656 B
C
//
|
||
// Created by dongl on 23-4-16.
|
||
//
|
||
|
||
#ifndef IM_IM_USER_H
|
||
#define IM_IM_USER_H
|
||
|
||
#include <mysql++/mysql++.h>
|
||
#include <mysql++/ssqls.h>
|
||
#include "sql_table_struct.h"
|
||
|
||
sql_create_7(im_user,
|
||
1, 7, // 1 当主键 第三个参数是 SETCOUNT。如果这为非零值,则添加一个初始化构造函数和一个成员函数,该函数采用给定数量的参数,用于设置结构的前 N 个字段。
|
||
mysqlpp::sql_bigint , account,
|
||
mysqlpp::sql_bigint , phone,
|
||
mysqlpp::sql_varchar, email,
|
||
mysqlpp::sql_varchar,username,
|
||
mysqlpp::sql_varchar,password,
|
||
mysqlpp::sql_varchar,password_salt,
|
||
mysqlpp::sql_tinyblob, client_info
|
||
);
|
||
|
||
|
||
#endif //IM_IM_USER_H
|