diff options
| author | Dhravya <[email protected]> | 2024-04-14 00:48:37 -0700 |
|---|---|---|
| committer | Dhravya <[email protected]> | 2024-04-14 00:48:37 -0700 |
| commit | ca197a98d996f6b0f903ec575db2af57a7312e6b (patch) | |
| tree | 8b0c839eb3cc0643cc55c81484e15946eda7c25d | |
| parent | update db prepare statement (diff) | |
| download | supermemory-ca197a98d996f6b0f903ec575db2af57a7312e6b.tar.xz supermemory-ca197a98d996f6b0f903ec575db2af57a7312e6b.zip | |
added wipefile
| -rw-r--r-- | apps/web/db/wipe.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/web/db/wipe.sql b/apps/web/db/wipe.sql new file mode 100644 index 00000000..456a48ad --- /dev/null +++ b/apps/web/db/wipe.sql @@ -0,0 +1,7 @@ +DELETE FROM `account`; +DELETE FROM `contentToSpace`; +DELETE FROM `session`; +DELETE FROM `space`; +DELETE FROM `storedContent`; +DELETE FROM `user`; +DELETE FROM `verificationToken`;
\ No newline at end of file |