migrate script naming convention

This commit is contained in:
Shaun Walker
2020-06-14 13:06:33 -04:00
parent 4e6b4a20ef
commit 4285603563
10 changed files with 52 additions and 14 deletions

View File

@ -0,0 +1,14 @@
/*
Version 0.9.1 migration script
*/
ALTER TABLE [dbo].[Module] ADD
[AllPages] [bit] NULL
GO
UPDATE [dbo].[Module]
SET [AllPages] = 0
GO