FutureCallEntryTable constructor

FutureCallEntryTable({
  1. TableRelation? tableRelation,
})

Implementation

FutureCallEntryTable({super.tableRelation})
  : super(tableName: 'serverpod_future_call') {
  updateTable = FutureCallEntryUpdateTable(this);
  name = _is.ColumnString(
    'name',
    this,
  );
  time = _is.ColumnDateTime(
    'time',
    this,
  );
  serializedObject = _is.ColumnString(
    'serializedObject',
    this,
  );
  serverId = _is.ColumnString(
    'serverId',
    this,
  );
  identifier = _is.ColumnString(
    'identifier',
    this,
  );
  scheduling = _is.ColumnSerializable<_is8pd350.FutureCallScheduling>(
    'scheduling',
    this,
  );
}