Merge "Script for removing a board."

This commit is contained in:
Zuul 2019-05-29 17:13:06 +00:00 committed by Gerrit Code Review
commit 3ef5c11f89
1 changed files with 11 additions and 0 deletions

11
utils/remove_board.sql Normal file
View File

@ -0,0 +1,11 @@
SELECT @BOARD_UUID := '220e9130-2d89-435e-96c1-49f9c88f9a18';
select @BOARD_ID := `id` from boards where uuid= @BOARD_UUID;
delete from locations where board_id=@BOARD_ID;
delete from sessions where board_id=@BOARD_ID;
delete from enabled_webservices where board_uuid=@BOARD_UUID;
delete from exposed_services where board_uuid=@BOARD_UUID;
delete from webservices where board_uuid=@BOARD_UUID;
delete from injection_plugins where board_uuid=@BOARD_UUID;
delete from boards where uuid=@BOARD_UUID;