feat(postgres): implement the first version of the PostgreSQL plugin

This commit is contained in:
Joakim Carlstein 2023-12-19 13:18:56 +01:00 committed by Joakim Carlstein
parent 3d34b8ba13
commit 17c4723bb8
16 changed files with 761 additions and 18 deletions

View file

@ -117,6 +117,10 @@ export default defineConfig({
label: 'File System',
link: '/plugins/storage/file-system/',
},
{
label: 'PostgreSQL',
link: '/plugins/storage/postgres/',
},
{
label: 'MySQL',
link: '/plugins/storage/mysql/',
@ -135,6 +139,10 @@ export default defineConfig({
label: 'Default Loader',
link: '/plugins/loaders/default/',
},
{
label: 'PostgreSQL Loader',
link: '/plugins/loaders/postgres/',
},
{
label: 'MySQL Loader',
link: '/plugins/loaders/mysql/',
@ -171,6 +179,10 @@ export default defineConfig({
label: 'JavaScript Generator',
link: '/plugins/generators/js/',
},
{
label: 'PostgreSQL Generator',
link: '/plugins/generators/postgres/',
},
{
label: 'MySQL Generator',
link: '/plugins/generators/mysql/',