MessageLogEntryTable constructor

MessageLogEntryTable({
  1. TableRelation? tableRelation,
})

Implementation

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