@bslau/hmm_prisma_schema 1.1.17 → 1.1.18
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
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
BEGIN TRY
|
|
2
|
+
|
|
3
|
+
BEGIN TRAN;
|
|
4
|
+
|
|
5
|
+
-- AlterTable
|
|
6
|
+
ALTER TABLE [dbo].[HotMetal] ADD [BF6WeighBridgeWeight] INT,
|
|
7
|
+
[consumedBy] NVARCHAR(1000),
|
|
8
|
+
[consumedByDate] DATETIMEOFFSET;
|
|
9
|
+
|
|
10
|
+
COMMIT TRAN;
|
|
11
|
+
|
|
12
|
+
END TRY
|
|
13
|
+
BEGIN CATCH
|
|
14
|
+
|
|
15
|
+
IF @@TRANCOUNT > 0
|
|
16
|
+
BEGIN
|
|
17
|
+
ROLLBACK TRAN;
|
|
18
|
+
END;
|
|
19
|
+
THROW
|
|
20
|
+
|
|
21
|
+
END CATCH
|
package/prisma/schema.prisma
CHANGED
|
@@ -104,6 +104,9 @@ model HotMetal {
|
|
|
104
104
|
identityBlastFurnace Int
|
|
105
105
|
noPosnTldlTapHole Int
|
|
106
106
|
temperatureHotMetal Int?
|
|
107
|
+
BF6WeighBridgeWeight Int?
|
|
108
|
+
consumedBy String?
|
|
109
|
+
consumedByDate DateTime? @db.DateTimeOffset
|
|
107
110
|
dpLevelTldlAuto Int?
|
|
108
111
|
dpLevelTldlManual Int?
|
|
109
112
|
capacity Int?
|