File tree Expand file tree Collapse file tree
20250605184740_add_device_agent_details_to_org
20250610215328_add_fleet_label_to_employees
20250611144654_add_is_fleet_setup_flag Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1111END;
1212$$ LANGUAGE plpgsql;
1313
14- -- AlterTable
15- ALTER TABLE " Organization" ADD COLUMN " fleetDmLabelId" INTEGER ,
16- ADD COLUMN " fleetDmSecret" TEXT NOT NULL DEFAULT generate_random_secret(32 ),
17- ADD COLUMN " isFleetSetupCompleted" BOOLEAN NOT NULL DEFAULT false,
18- ADD COLUMN " osqueryAgentDownloadUrl" TEXT ;
1914
2015-- AlterTable
21- ALTER TABLE " Member" ADD COLUMN " fleetDmLabelId" INTEGER ;
16+ ALTER TABLE " Organization" ADD COLUMN " fleetDmSecret" TEXT NOT NULL DEFAULT generate_random_secret(32 );
17+ ALTER TABLE " Organization" ADD COLUMN " fleetDmLabelId" INT ;
18+ ALTER TABLE " Organization" ADD COLUMN " osqueryAgentDownloadUrl" TEXT ;
Original file line number Diff line number Diff line change 1+ -- AlterTable
2+ ALTER TABLE " Member" ADD COLUMN " fleetDmLabelId" INTEGER ;
Original file line number Diff line number Diff line change 1+ -- AlterTable
2+ ALTER TABLE " Organization" ADD COLUMN " isFleetSetupCompleted" BOOLEAN NOT NULL DEFAULT false;
Original file line number Diff line number Diff line change @@ -83,6 +83,7 @@ model Member {
8383 department Departments @default (none )
8484 isActive Boolean @default (true )
8585 employeeTrainingVideoCompletion EmployeeTrainingVideoCompletion []
86+ fleetDmLabelId Int ?
8687
8788 assignedPolicies Policy [] @relation (" PolicyAssignee " ) // Policies where this member is an assignee
8889 approvedPolicies Policy [] @relation (" PolicyApprover " ) // Policies where this member is an approver
You can’t perform that action at this time.
0 commit comments