SessionLogEntryTable constructor

SessionLogEntryTable({
  1. TableRelation? tableRelation,
})

Implementation

SessionLogEntryTable({super.tableRelation})
  : super(tableName: 'serverpod_session_log') {
  updateTable = SessionLogEntryUpdateTable(this);
  serverId = _is.ColumnString(
    'serverId',
    this,
  );
  time = _is.ColumnDateTime(
    'time',
    this,
  );
  module = _is.ColumnString(
    'module',
    this,
  );
  endpoint = _is.ColumnString(
    'endpoint',
    this,
  );
  method = _is.ColumnString(
    'method',
    this,
  );
  duration = _is.ColumnDouble(
    'duration',
    this,
  );
  numQueries = _is.ColumnInt(
    'numQueries',
    this,
  );
  slow = _is.ColumnBool(
    'slow',
    this,
  );
  error = _is.ColumnString(
    'error',
    this,
  );
  stackTrace = _is.ColumnString(
    'stackTrace',
    this,
  );
  authenticatedUserId = _is.ColumnInt(
    'authenticatedUserId',
    this,
  );
  userId = _is.ColumnString(
    'userId',
    this,
  );
  isOpen = _is.ColumnBool(
    'isOpen',
    this,
  );
  touched = _is.ColumnDateTime(
    'touched',
    this,
  );
}