Struct TablePrivileges

struct TablePrivileges

Public Static Attributes

const int32_t ALL = -1
const int32_t CREATE_TABLE = 1 << 0
const int32_t DROP_TABLE = 1 << 1
const int32_t SELECT_FROM_TABLE = 1 << 2
const int32_t INSERT_INTO_TABLE = 1 << 3
const int32_t UPDATE_IN_TABLE = 1 << 4
const int32_t DELETE_FROM_TABLE = 1 << 5
const int32_t TRUNCATE_TABLE = 1 << 6
const int32_t ALTER_TABLE = 1 << 7
const int32_t ALL_MIGRATE = CREATE_TABLE | DROP_TABLE | SELECT_FROM_TABLE | INSERT_INTO_TABLE