mirror of
https://github.com/ckaczor/FeedCenter.git
synced 2026-01-17 01:25:37 -05:00
Initial commit
This commit is contained in:
18
Scripts/DatabaseUpdate_5.sqlce
Normal file
18
Scripts/DatabaseUpdate_5.sqlce
Normal file
@@ -0,0 +1,18 @@
|
||||
ALTER TABLE Feed ADD COLUMN MultipleOpenAction int
|
||||
GO
|
||||
|
||||
UPDATE Feed
|
||||
SET MultipleOpenAction = 0
|
||||
WHERE MultipleOpenAction IS NULL
|
||||
GO
|
||||
|
||||
ALTER TABLE Feed ALTER COLUMN MultipleOpenAction int NOT NULL
|
||||
GO
|
||||
|
||||
ALTER TABLE Feed ALTER COLUMN MultipleOpenAction SET DEFAULT 0
|
||||
GO
|
||||
|
||||
UPDATE Setting
|
||||
SET Value = '6'
|
||||
WHERE Name = 'DatabaseVersion'
|
||||
GO
|
||||
Reference in New Issue
Block a user