UserProfileImageTable constructor

UserProfileImageTable({
  1. TableRelation? tableRelation,
})

Implementation

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