QueryLogEntryTable constructor

QueryLogEntryTable({
  1. TableRelation? tableRelation,
})

Implementation

QueryLogEntryTable({super.tableRelation})
    : super(tableName: 'serverpod_query_log') {
  serverId = _i1.ColumnString(
    'serverId',
    this,
  );
  sessionLogId = _i1.ColumnInt(
    'sessionLogId',
    this,
  );
  messageId = _i1.ColumnInt(
    'messageId',
    this,
  );
  query = _i1.ColumnString(
    'query',
    this,
  );
  duration = _i1.ColumnDouble(
    'duration',
    this,
  );
  numRows = _i1.ColumnInt(
    'numRows',
    this,
  );
  error = _i1.ColumnString(
    'error',
    this,
  );
  stackTrace = _i1.ColumnString(
    'stackTrace',
    this,
  );
  slow = _i1.ColumnBool(
    'slow',
    this,
  );
  order = _i1.ColumnInt(
    'order',
    this,
  );
}