UserProfileImageTable constructor

UserProfileImageTable({
  1. TableRelation? tableRelation,
})

Implementation

UserProfileImageTable({super.tableRelation})
  : super(tableName: 'serverpod_auth_core_profile_image') {
  updateTable = UserProfileImageUpdateTable(this);
  userProfileId = _is.ColumnUuid(
    'userProfileId',
    this,
  );
  createdAt = _is.ColumnDateTime(
    'createdAt',
    this,
    hasDefault: true,
  );
  storageId = _is.ColumnString(
    'storageId',
    this,
  );
  path = _is.ColumnString(
    'path',
    this,
  );
  url = _is.ColumnUri(
    'url',
    this,
  );
}