mirror of
https://github.com/bitwarden/server.git
synced 2025-06-30 15:42:48 -05:00
Try recreate again
This commit is contained in:
@ -7,8 +7,19 @@ BEGIN
|
||||
END
|
||||
GO
|
||||
|
||||
-- Refresh View
|
||||
EXECUTE sp_refreshview N'[dbo].[SendView]'
|
||||
-- Recreate View
|
||||
IF OBJECT_ID('[dbo].[SendView]') IS NOT NULL
|
||||
BEGIN
|
||||
DROP VIEW [dbo].[SendView]
|
||||
END
|
||||
GO
|
||||
|
||||
CREATE VIEW [dbo].[SendView]
|
||||
AS
|
||||
SELECT
|
||||
*
|
||||
FROM
|
||||
[dbo].[Send]
|
||||
GO
|
||||
|
||||
CREATE OR ALTER PROCEDURE [dbo].[Send_Create]
|
||||
|
Reference in New Issue
Block a user