mirror of
https://github.com/bitwarden/server
synced 2025-12-17 16:53:23 +00:00
Refactor to track entities rather than manually writing destroy
This commit is contained in:
10
util/Migrator/DbScripts/2025-10-07_00_SeededData.sql
Normal file
10
util/Migrator/DbScripts/2025-10-07_00_SeededData.sql
Normal file
@@ -0,0 +1,10 @@
|
||||
IF OBJECT_ID('dbo.SeededData') IS NULL
|
||||
BEGIN
|
||||
CREATE TABLE [dbo].[SeededData] (
|
||||
[Id] UNIQUEIDENTIFIER NOT NULL,
|
||||
[RecipeName] NVARCHAR (MAX) NOT NULL,
|
||||
[Data] NVARCHAR (MAX) NULL,
|
||||
[CreationDate] DATETIME2 (7) NOT NULL,
|
||||
);
|
||||
END
|
||||
GO
|
||||
Reference in New Issue
Block a user