SessionLogEntryTable constructor

SessionLogEntryTable({
  1. TableRelation? tableRelation,
})

Implementation

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