Files
server/extra/admin-api/db-patches/00-use-stream-class.patch
2025-12-13 23:34:36 +01:00

15 lines
482 B
Diff
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
diff --git a/Spacebar.Db/Contexts/SpacebarDbContext.cs b/Spacebar.Db/Contexts/SpacebarDbContext.cs
index 0a707c75..7d380b1c 100644
--- a/Spacebar.Db/Contexts/SpacebarDbContext.cs
+++ b/Spacebar.Db/Contexts/SpacebarDbContext.cs
@@ -1,7 +1,6 @@
-using System;
-using System.Collections.Generic;
-using Microsoft.EntityFrameworkCore;
+using Microsoft.EntityFrameworkCore;
using Spacebar.Db.Models;
+using Stream = Spacebar.Db.Models.Stream;
namespace Spacebar.Db.Contexts;