Skip to content

Commit fe36329

Browse files
committed
separate data from schema again, improve DX
1 parent d5e2aa2 commit fe36329

62 files changed

Lines changed: 4131 additions & 4251 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

database/data/000_clear.sql

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
PRAGMA foreign_keys = OFF;
2+
3+
DELETE FROM implication_assumptions;
4+
DELETE FROM implication_conclusions;
5+
DELETE FROM implications;
6+
7+
DELETE FROM category_isomorphisms;
8+
DELETE FROM category_epimorphisms;
9+
DELETE FROM category_monomorphisms;
10+
11+
DELETE FROM category_non_properties;
12+
DELETE FROM category_properties;
13+
14+
DELETE FROM category_comments;
15+
DELETE FROM related_categories;
16+
DELETE FROM category_tags;
17+
DELETE FROM categories;
18+
19+
DELETE FROM tags;
20+
21+
DELETE FROM related_properties;
22+
DELETE FROM properties;
23+
DELETE FROM prefixes;
24+
25+
PRAGMA foreign_keys = ON;

0 commit comments

Comments
 (0)