UserProfileTable constructor

UserProfileTable({
  1. TableRelation? tableRelation,
})

Implementation

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