aboutsummaryrefslogtreecommitdiff
path: root/src/tools/sql-prettify/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/sql-prettify/index.ts')
-rw-r--r--src/tools/sql-prettify/index.ts26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/tools/sql-prettify/index.ts b/src/tools/sql-prettify/index.ts
new file mode 100644
index 0000000..426845f
--- /dev/null
+++ b/src/tools/sql-prettify/index.ts
@@ -0,0 +1,26 @@
+import { Database } from '@vicons/tabler';
+import { defineTool } from '../tool';
+
+export const tool = defineTool({
+ name: 'SQL prettify and format',
+ path: '/sql-prettify',
+ description: 'Format and prettify your SQL queries online (it supports various SQL dialects).',
+ keywords: [
+ 'sql',
+ 'prettify',
+ 'beautify',
+ 'GCP BigQuery',
+ 'IBM DB2',
+ 'Apache Hive',
+ 'MariaDB',
+ 'MySQL',
+ 'Couchbase N1QL',
+ 'Oracle PL/SQL',
+ 'PostgreSQL',
+ 'Amazon Redshift',
+ 'Spark',
+ 'SQL Server Transact-SQL',
+ ],
+ component: () => import('./sql-prettify.vue'),
+ icon: Database,
+});