advotracker: restructure project using crate tree
* advotracker: the framework crate * crate/advotrackerdb: crate implementing the database backend * crate/advotrackerd: the backend daemon * crate/adovtracker: the application (CLI and GUI) Signed-off-by: Ralf Zerres <ralf.zerres@networkx.de>
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
/*
|
||||
* advotracker - Hotline tackingtool for Advocats
|
||||
*
|
||||
* Copyright 2020 Ralf Zerres <ralf.zerres@networkx.de>
|
||||
* SPDX-License-Identifier: 0BSD
|
||||
*/
|
||||
|
||||
DROP INDEX IF EXISTS NumberHarm_ix_numberHarm;
|
||||
DROP TABLE IF EXISTS NumberHarm;
|
||||
DROP INDEX IF EXISTS UserClaim_ix_userId;
|
||||
DROP TABLE IF EXISTS UserClaim;
|
||||
DROP VIEW IF EXISTS View_UserRole;
|
||||
DROP INDEX IF EXISTS UserUserRole_ix_roleId;
|
||||
DROP INDEX IF EXISTS UserUserRole_ix_userId;
|
||||
DROP TABLE IF EXISTS UserUserRole;
|
||||
DROP TABLE IF EXISTS UserRole;
|
||||
DROP TABLE IF EXISTS User;
|
||||
Reference in New Issue
Block a user