CloudStorageDirectUploadEntryTable constructor
      
      CloudStorageDirectUploadEntryTable({ 
    
    
- TableRelation? tableRelation,
Implementation
CloudStorageDirectUploadEntryTable({super.tableRelation})
    : super(tableName: 'serverpod_cloud_storage_direct_upload') {
  updateTable = CloudStorageDirectUploadEntryUpdateTable(this);
  storageId = _i1.ColumnString(
    'storageId',
    this,
  );
  path = _i1.ColumnString(
    'path',
    this,
  );
  expiration = _i1.ColumnDateTime(
    'expiration',
    this,
  );
  authKey = _i1.ColumnString(
    'authKey',
    this,
  );
}