ServerHealthConnectionInfoTable constructor

ServerHealthConnectionInfoTable({
  1. TableRelation? tableRelation,
})

Implementation

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