chore(cpa): remove beta from vercel pg and sqlite

This commit is contained in:
Elliot DeNolf
2024-11-18 15:40:18 -05:00
parent e796ff2330
commit 2b955a4aa3

View File

@@ -24,12 +24,12 @@ const dbChoiceRecord: Record<DbType, DbChoice> = {
sqlite: {
dbConnectionPrefix: 'file:./',
dbConnectionSuffix: '.db',
title: 'SQLite (beta)',
title: 'SQLite',
value: 'sqlite',
},
'vercel-postgres': {
dbConnectionPrefix: 'postgres://postgres:<password>@127.0.0.1:5432/',
title: 'Vercel Postgres (beta)',
title: 'Vercel Postgres',
value: 'vercel-postgres',
},
}