diff --git a/api/spec/factories/Room/BathroomFactory.ts b/api/spec/factories/Room/BathroomFactory.ts
new file mode 100644
index 0000000..749ce6b
--- /dev/null
+++ b/api/spec/factories/Room/BathroomFactory.ts
@@ -0,0 +1,9 @@
+import { UpdateableProperties } from '@rvoh/dream/types'
+import Bathroom from '@models/Room/Bathroom.js'
+
+export default async function createBathroom(attrs: UpdateableProperties<Bathroom> = {}) {
+ return await Bathroom.create({
+ bathOrShowerStyle: 'bath',
+ ...attrs,
+ })
+}
diff --git a/api/spec/unit/models/Room/Bathroom.spec.ts b/api/spec/unit/models/Room/Bathroom.spec.ts
new file mode 100644
index 0000000..25a6823
--- /dev/null
+++ b/api/spec/unit/models/Room/Bathroom.spec.ts
@@ -0,0 +1,3 @@
+describe('Room/Bathroom', () => {
+ it.todo('add a test here to get started building Room/Bathroom')
+})
diff --git a/api/src/app/models/Room/Bathroom.ts b/api/src/app/models/Room/Bathroom.ts
new file mode 100644
index 0000000..b38ff11
--- /dev/null
+++ b/api/src/app/models/Room/Bathroom.ts
@@ -0,0 +1,15 @@
+import { STI } from '@rvoh/dream'
+import { DreamColumn, DreamSerializers } from '@rvoh/dream/types'
+import Room from '@models/Room.js'
+
+@STI(Room)
+export default class Bathroom extends Room {
+ public override get serializers(): DreamSerializers<Bathroom> {
+ return {
+ default: 'Room/BathroomSerializer',
+ summary: 'Room/BathroomSummarySerializer',
+ }
+ }
+
+ public bathOrShowerStyle: DreamColumn<Bathroom, 'bathOrShowerStyle'>
+}
diff --git a/api/src/app/serializers/Room/BathroomSerializer.ts b/api/src/app/serializers/Room/BathroomSerializer.ts
new file mode 100644
index 0000000..a80452b
--- /dev/null
+++ b/api/src/app/serializers/Room/BathroomSerializer.ts
@@ -0,0 +1,9 @@
+import { RoomSerializer, RoomSummarySerializer } from '@serializers/RoomSerializer.js'
+import Bathroom from '@models/Room/Bathroom.js'
+
+export const RoomBathroomSummarySerializer = (bathroom: Bathroom) =>
+ RoomSummarySerializer(Bathroom, bathroom)
+
+export const RoomBathroomSerializer = (bathroom: Bathroom) =>
+ RoomSerializer(Bathroom, bathroom)
+ .attribute('bathOrShowerStyle')
diff --git a/api/src/db/migrations/1782926206623-create-room-bathroom.ts b/api/src/db/migrations/1782926206623-create-room-bathroom.ts
new file mode 100644
index 0000000..3c845b2
--- /dev/null
+++ b/api/src/db/migrations/1782926206623-create-room-bathroom.ts
@@ -0,0 +1,37 @@
+import { Kysely, sql } from 'kysely'
+
+// eslint-disable-next-line @typescript-eslint/no-explicit-any
+export async function up(db: Kysely<any>): Promise<void> {
+ await db.schema
+ .createType('bath_or_shower_styles_enum')
+ .asEnum([
+ 'bath',
+ 'shower',
+ 'bath_and_shower',
+ 'none'
+ ])
+ .execute()
+
+ await db.schema
+ .alterTable('rooms')
+ .addColumn('bath_or_shower_style', sql`bath_or_shower_styles_enum`)
+ .execute()
+
+ await db.schema
+ .alterTable('rooms')
+ .addCheckConstraint(
+ 'rooms_not_null_bath_or_shower_style',
+ sql`type != 'Bathroom' OR bath_or_shower_style IS NOT NULL`,
+ )
+ .execute()
+}
+
+// eslint-disable-next-line @typescript-eslint/no-explicit-any
+export async function down(db: Kysely<any>): Promise<void> {
+ await db.schema
+ .alterTable('rooms')
+ .dropColumn('bath_or_shower_style')
+ .execute()
+
+ await db.schema.dropType('bath_or_shower_styles_enum').execute()
+}
\ No newline at end of file