CloudStorageDirectDownloadEntryTable constructor

CloudStorageDirectDownloadEntryTable({
  1. TableRelation? tableRelation,
})

Implementation

CloudStorageDirectDownloadEntryTable({super.tableRelation})
  : super(tableName: 'serverpod_cloud_storage_direct_download') {
  updateTable = CloudStorageDirectDownloadEntryUpdateTable(this);
  storageId = _is.ColumnString(
    'storageId',
    this,
  );
  path = _is.ColumnString(
    'path',
    this,
  );
  expiration = _is.ColumnDateTime(
    'expiration',
    this,
  );
  authKey = _is.ColumnString(
    'authKey',
    this,
  );
  downloadFileName = _is.ColumnString(
    'downloadFileName',
    this,
  );
  contentType = _is.ColumnString(
    'contentType',
    this,
  );
}