mirror of
https://github.com/ckaczor/FeedCenter.git
synced 2026-01-14 17:23:01 -05:00
15 lines
172 B
Plaintext
15 lines
172 B
Plaintext
CREATE TABLE DatabaseVersion
|
|
(
|
|
Value int NOT NULL DEFAULT 0
|
|
)
|
|
GO
|
|
|
|
INSERT DatabaseVersion
|
|
(Value)
|
|
VALUES (7)
|
|
GO
|
|
|
|
DELETE Setting
|
|
WHERE Name = 'DatabaseVersion'
|
|
GO
|