🤖 Backend
Sqlite

SQLite Cheatsheet

Drop all tables

PRAGMA writable_schema = 1;
delete from sqlite_master where type in ('table', 'index', 'trigger');
PRAGMA writable_schema = 0;