Skip to content

Commit

Permalink
fix: Adding user_tag_proposal schema to reset.sql for local dev (#1977)
Browse files Browse the repository at this point in the history
* Introduced in #1402
  • Loading branch information
jsdevel authored Jun 10, 2022
1 parent 3c5efb1 commit 6be18ff
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/api/db/reset.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ DROP TYPE IF EXISTS pin_status_type cascade;
DROP TYPE IF EXISTS service_type cascade;
DROP TYPE IF EXISTS auth_key_blocked_status_type cascade;
DROP TYPE IF EXISTS user_tag_type cascade;
DROP TYPE IF EXISTS user_tag_proposal_decision_type cascade;
DROP TYPE IF EXISTS user_tag_value_type cascade;

DROP TABLE IF EXISTS upload CASCADE;
Expand All @@ -11,6 +12,7 @@ DROP TABLE IF EXISTS content;
DROP TABLE IF EXISTS auth_key_history;
DROP TABLE IF EXISTS auth_key;
DROP TABLE IF EXISTS public.user_tag;
DROP TABLE IF EXISTS public.user_tag_proposal;
DROP TABLE IF EXISTS public.user CASCADE;
DROP TABLE IF EXISTS metric CASCADE;

Expand Down

0 comments on commit 6be18ff

Please sign in to comment.