summary refs log tree commit diff
path: root/extra/admin-api/db-patches/00-use-stream-class.patch
blob: 1636f1202851ce7c1f48a4a1d15ed6005f06d653 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;