UserProfileTable constructor

UserProfileTable({
  1. TableRelation? tableRelation,
})

Implementation

UserProfileTable({super.tableRelation})
  : super(tableName: 'serverpod_auth_core_profile') {
  updateTable = UserProfileUpdateTable(this);
  authUserId = _is.ColumnUuid(
    'authUserId',
    this,
  );
  userName = _is.ColumnString(
    'userName',
    this,
  );
  fullName = _is.ColumnString(
    'fullName',
    this,
  );
  email = _is.ColumnString(
    'email',
    this,
  );
  createdAt = _is.ColumnDateTime(
    'createdAt',
    this,
    hasDefault: true,
  );
  imageId = _is.ColumnUuid(
    'imageId',
    this,
  );
}