MessageLogEntryTable constructor

MessageLogEntryTable({
  1. TableRelation? tableRelation,
})

Implementation

MessageLogEntryTable({super.tableRelation})
  : super(tableName: 'serverpod_message_log') {
  updateTable = MessageLogEntryUpdateTable(this);
  sessionLogId = _is.ColumnInt(
    'sessionLogId',
    this,
  );
  serverId = _is.ColumnString(
    'serverId',
    this,
  );
  messageId = _is.ColumnInt(
    'messageId',
    this,
  );
  endpoint = _is.ColumnString(
    'endpoint',
    this,
  );
  messageName = _is.ColumnString(
    'messageName',
    this,
  );
  duration = _is.ColumnDouble(
    'duration',
    this,
  );
  error = _is.ColumnString(
    'error',
    this,
  );
  stackTrace = _is.ColumnString(
    'stackTrace',
    this,
  );
  slow = _is.ColumnBool(
    'slow',
    this,
  );
  order = _is.ColumnInt(
    'order',
    this,
  );
}