File tree Expand file tree Collapse file tree
migrations/20231010194436_integration_to_install Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,4 +7,4 @@ ALTER TABLE "Work_Package" ALTER COLUMN "stage" TYPE "Work_Package_Stage_new" US
77 END);
88ALTER TYPE " Work_Package_Stage" RENAME TO " Work_Package_Stage_old" ;
99ALTER TYPE " Work_Package_Stage_new" RENAME TO " Work_Package_Stage" ;
10- DROP TYPE " Work_Package_Stage_old" ;
10+ DROP TYPE " Work_Package_Stage_old" ;
Original file line number Diff line number Diff line change @@ -405,6 +405,24 @@ const performSeed: () => Promise<void> = async () => {
405405 ) ;
406406 const workPackage3WbsNumber = validateWBS ( workPackage3WbsString ) ;
407407
408+ /** Work Package 4 */
409+ const { workPackageWbsNumber : workPackage4WbsNumber , workPackage : workPackage4 } = await seedWorkPackage (
410+ thomasEmrax ,
411+ project5WbsNumber ,
412+ 'Install Wiring Harness' ,
413+ changeRequest1Id ,
414+ WorkPackageStage . Install ,
415+ '04/01/2023' ,
416+ 7 ,
417+ [ ] ,
418+ [ 'Assemble and install wiring harness' , 'Confirm the installation was successful' ] ,
419+ [ 'Wiring harness is functional and installed in the car' ] ,
420+ thomasEmrax ,
421+ WbsElementStatus . Active ,
422+ joeShmoe . userId ,
423+ thomasEmrax . userId
424+ ) ;
425+
408426 /**
409427 * Change Requests
410428 */
You can’t perform that action at this time.
0 commit comments