ServerHealthConnectionInfoTable constructor

ServerHealthConnectionInfoTable({
  1. TableRelation? tableRelation,
})

Implementation

ServerHealthConnectionInfoTable({super.tableRelation})
  : super(tableName: 'serverpod_health_connection_info') {
  updateTable = ServerHealthConnectionInfoUpdateTable(this);
  serverId = _is.ColumnString(
    'serverId',
    this,
  );
  timestamp = _is.ColumnDateTime(
    'timestamp',
    this,
  );
  active = _is.ColumnInt(
    'active',
    this,
  );
  closing = _is.ColumnInt(
    'closing',
    this,
  );
  idle = _is.ColumnInt(
    'idle',
    this,
  );
  granularity = _is.ColumnInt(
    'granularity',
    this,
  );
}