diff --git a/src/Sql/Sql.sqlproj b/src/Sql/Sql.sqlproj
index 1ffe20cc11..9d7db8137d 100644
--- a/src/Sql/Sql.sqlproj
+++ b/src/Sql/Sql.sqlproj
@@ -128,22 +128,29 @@
+
+
+
+
+
+
+
diff --git a/src/Sql/dbo/Stored Procedures/Event_ReadyById.sql b/src/Sql/dbo/Stored Procedures/Event_ReadyById.sql
deleted file mode 100644
index 71e3b28660..0000000000
--- a/src/Sql/dbo/Stored Procedures/Event_ReadyById.sql
+++ /dev/null
@@ -1,13 +0,0 @@
-CREATE PROCEDURE [dbo].[Event_ReadById]
- @Id UNIQUEIDENTIFIER
-AS
-BEGIN
- SET NOCOUNT ON
-
- SELECT
- *
- FROM
- [dbo].[Event]
- WHERE
- [Id] = @Id
-END