File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ function checkNodeVersion(minRequiredVersion = 20) {
64
64
if ( isNaN ( major ) || major < minRequiredVersion ) {
65
65
throw new Error (
66
66
`Node.js v${ minRequiredVersion } + is required. You have ${ process . versions . node } . ` +
67
- `Please upgrade Node.js.`
67
+ `Please upgrade Node.js. We recommend using nvm for managing multiple Node.js versions. `
68
68
) ;
69
69
}
70
70
}
@@ -80,6 +80,8 @@ function detectDbProvider(protocol) {
80
80
return 'postgresql' ;
81
81
} else if ( protocol . startsWith ( 'mongodb' ) ) {
82
82
return 'mongodb' ;
83
+ } else if ( protocol . startsWith ( 'mysql' ) ) {
84
+ return 'mysql' ;
83
85
}
84
86
85
87
const message = `Unknown database provider for ${ protocol } . Only SQLite, PostgreSQL, and MongoDB are supported now.` ;
Original file line number Diff line number Diff line change 55
55
</template >
56
56
57
57
<script setup lang="ts">
58
- import { defineProps } from ' vue' ;
59
58
import ValueRenderer from ' @/components/ValueRenderer.vue' ;
60
59
import { getCustomComponent } from ' @/utils' ;
61
60
import { useCoreStore } from ' @/stores/core' ;
You can’t perform that action at this time.
0 commit comments