@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
package/prisma/migrations/20250526012646_hotmetal_mass_hot_metal_tldl_estimated_float/migration.sql
ADDED
|
@@ -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
|
package/prisma/schema.prisma
CHANGED
|
@@ -192,7 +192,7 @@ model HotMetal {
|
|
|
192
192
|
dpLevelTldlManual Int?
|
|
193
193
|
capacity Int?
|
|
194
194
|
massHotMetalResidueTldl Int?
|
|
195
|
-
massHotMetalTldlEstimated
|
|
195
|
+
massHotMetalTldlEstimated Float?
|
|
196
196
|
massActual Int?
|
|
197
197
|
pot Pot? @relation(fields: [potId], references: [id])
|
|
198
198
|
potId Int?
|