@bslau/hmm_prisma_schema 1.4.0 → 1.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bslau/hmm_prisma_schema",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "main": "index.js",
5
5
  "author": "CIPA Development Team",
6
6
  "license": "ISC",
@@ -0,0 +1,19 @@
1
+ BEGIN TRY
2
+
3
+ BEGIN TRAN;
4
+
5
+ -- AlterTable
6
+ ALTER TABLE [dbo].[HotMetal] ALTER COLUMN [massHotMetalTldlEstimated] FLOAT(53) NULL;
7
+
8
+ COMMIT TRAN;
9
+
10
+ END TRY
11
+ BEGIN CATCH
12
+
13
+ IF @@TRANCOUNT > 0
14
+ BEGIN
15
+ ROLLBACK TRAN;
16
+ END;
17
+ THROW
18
+
19
+ END CATCH
@@ -192,7 +192,7 @@ model HotMetal {
192
192
  dpLevelTldlManual Int?
193
193
  capacity Int?
194
194
  massHotMetalResidueTldl Int?
195
- massHotMetalTldlEstimated Int?
195
+ massHotMetalTldlEstimated Float?
196
196
  massActual Int?
197
197
  pot Pot? @relation(fields: [potId], references: [id])
198
198
  potId Int?