22 lines
708 B
C
22 lines
708 B
C
//
|
||
// Created by dongl on 23-5-4.
|
||
//
|
||
|
||
#ifndef IM2_IM_USER_FRIENDS_CPP
|
||
#define IM2_IM_USER_FRIENDS_CPP
|
||
|
||
#include <mysql++/mysql++.h>
|
||
#include <mysql++/ssqls.h>
|
||
#include "sql_table_struct.h"
|
||
|
||
sql_create_5(im_user_friends,
|
||
1, 5, // 1 当主键 第三个参数是 SETCOUNT。如果这为非零值,则添加一个初始化构造函数和一个成员函数,该函数采用给定数量的参数,用于设置结构的前 N 个字段。
|
||
mysqlpp::sql_bigint, account,
|
||
mysqlpp::sql_blob, groups,
|
||
mysqlpp::sql_blob, friends,
|
||
mysqlpp::sql_blob, to_be_added,
|
||
mysqlpp::sql_int, restrictions
|
||
);
|
||
|
||
#endif //IM2_IM_USER_FRIENDS_CPP
|