Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathscript.sql
More file actions
Latest commit
20 lines (11 loc) · 850 Bytes
/
Copy pathscript.sql
File metadata and controls
20 lines (11 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
START TRANSACTION;
ALTERTABLE"GuideVersions" ADD "ConcurrencyVersion"integerNOT NULL DEFAULT 0;
ALTERTABLE"BazaarProductSummaries" ADD "AvgTopBuyOrderPrice"double precisionNOT NULL DEFAULT 0.0;
ALTERTABLE"BazaarProductSummaries" ADD "AvgTopSellOrderPrice"double precisionNOT NULL DEFAULT 0.0;
ALTERTABLE"BazaarProductSummaries" ADD "TopBuyOrderPrice"double precisionNOT NULL DEFAULT 0.0;
ALTERTABLE"BazaarProductSummaries" ADD "TopSellOrderPrice"double precisionNOT NULL DEFAULT 0.0;
ALTERTABLE"BazaarProductSnapshots" ADD "TopBuyOrderPrice"double precisionNOT NULL DEFAULT 0.0;
ALTERTABLE"BazaarProductSnapshots" ADD "TopSellOrderPrice"double precisionNOT NULL DEFAULT 0.0;
INSERT INTO"__EFMigrationsHistory" ("MigrationId", "ProductVersion")
VALUES ('20260306031705_AddGuideConcurrency', '10.0.2');
COMMIT;