LogEntryTable constructor

LogEntryTable({
  1. TableRelation? tableRelation,
})

Implementation

LogEntryTable({super.tableRelation}) : super(tableName: 'serverpod_log') {
  sessionLogId = _i1.ColumnInt(
    'sessionLogId',
    this,
  );
  messageId = _i1.ColumnInt(
    'messageId',
    this,
  );
  reference = _i1.ColumnString(
    'reference',
    this,
  );
  serverId = _i1.ColumnString(
    'serverId',
    this,
  );
  time = _i1.ColumnDateTime(
    'time',
    this,
  );
  logLevel = _i1.ColumnEnum(
    'logLevel',
    this,
    _i1.EnumSerialization.byIndex,
  );
  message = _i1.ColumnString(
    'message',
    this,
  );
  error = _i1.ColumnString(
    'error',
    this,
  );
  stackTrace = _i1.ColumnString(
    'stackTrace',
    this,
  );
  order = _i1.ColumnInt(
    'order',
    this,
  );
}