-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathdrop.sql
30 lines (28 loc) · 1.01 KB
/
drop.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
DROP TABLE IF EXISTS Message;
DROP TABLE IF EXISTS Comment_replyOf_Message;
DROP TABLE IF EXISTS Message_hasCreator_Person;
DROP TABLE IF EXISTS Message_hasTag_Tag;
DROP TABLE IF EXISTS Message_isLocatedIn_Country;
DROP TABLE IF EXISTS Person_likes_Message;
DROP TABLE IF exists Company;
DROP TABLE IF exists University;
DROP TABLE IF exists Continent;
DROP TABLE IF exists Country;
DROP TABLE IF exists City;
DROP TABLE IF exists Tag;
DROP TABLE IF exists TagClass;
DROP TABLE IF exists Forum;
DROP TABLE IF exists Comment;
DROP TABLE IF exists Post;
DROP TABLE IF exists Person;
DROP TABLE IF exists Comment_hasTag_Tag;
DROP TABLE IF exists Post_hasTag_Tag;
DROP TABLE IF exists Forum_hasMember_Person;
DROP TABLE IF exists Forum_hasTag_Tag;
DROP TABLE IF exists Person_hasInterest_Tag;
DROP TABLE IF exists Person_likes_Comment;
DROP TABLE IF exists Person_likes_Post;
DROP TABLE IF exists Person_studyAt_University;
DROP TABLE IF exists Person_workAt_Company;
DROP TABLE IF exists Person_knows_Person;
DROP PROPERTY GRAPH lsqb;