refactor(dockscanning): more work on the dock door scanning
All checks were successful
Build and Push LST Docker Image / docker (push) Successful in 1m47s
All checks were successful
Build and Push LST Docker Image / docker (push) Successful in 1m47s
ref #12
This commit is contained in:
13
migrations/0060_freezing_hercules.sql
Normal file
13
migrations/0060_freezing_hercules.sql
Normal file
@@ -0,0 +1,13 @@
|
||||
CREATE TABLE "dock_door_scans" (
|
||||
"id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL,
|
||||
"loading_order" text NOT NULL,
|
||||
"loading_Unit" text,
|
||||
"loading_unit_status" text DEFAULT 'loaded',
|
||||
"message" text,
|
||||
"status" text DEFAULT 'active',
|
||||
"add_date" timestamp with time zone DEFAULT now(),
|
||||
"add_user" text DEFAULT 'lst-system',
|
||||
"upd_date" timestamp with time zone DEFAULT now(),
|
||||
"upd_user" text DEFAULT 'lst-system',
|
||||
CONSTRAINT "dock_door_scans_loading_Unit_unique" UNIQUE("loading_Unit")
|
||||
);
|
||||
1
migrations/0061_wide_marrow.sql
Normal file
1
migrations/0061_wide_marrow.sql
Normal file
@@ -0,0 +1 @@
|
||||
ALTER TABLE "dock_door_scans" ADD COLUMN "dock_id" text NOT NULL;
|
||||
2691
migrations/meta/0060_snapshot.json
Normal file
2691
migrations/meta/0060_snapshot.json
Normal file
File diff suppressed because it is too large
Load Diff
2697
migrations/meta/0061_snapshot.json
Normal file
2697
migrations/meta/0061_snapshot.json
Normal file
File diff suppressed because it is too large
Load Diff
@@ -421,6 +421,20 @@
|
||||
"when": 1780349486711,
|
||||
"tag": "0059_sparkling_joystick",
|
||||
"breakpoints": true
|
||||
},
|
||||
{
|
||||
"idx": 60,
|
||||
"version": "7",
|
||||
"when": 1780584999699,
|
||||
"tag": "0060_freezing_hercules",
|
||||
"breakpoints": true
|
||||
},
|
||||
{
|
||||
"idx": 61,
|
||||
"version": "7",
|
||||
"when": 1780692629119,
|
||||
"tag": "0061_wide_marrow",
|
||||
"breakpoints": true
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user