refactor: extract sqlite constants

This commit is contained in:
yyh
2026-01-22 16:15:58 +08:00
parent b6228c99cd
commit e69163d072
2 changed files with 2 additions and 2 deletions

View File

@ -0,0 +1 @@
export const TABLES_QUERY = 'SELECT name FROM sqlite_master WHERE type=\'table\' AND name NOT LIKE \'sqlite_%\' ORDER BY name'