strapi/packages/generators/app/lib/utils/db-client-name.js

14 lines
178 B
JavaScript
Raw Normal View History

'use strict';
/**
* Client
*/
module.exports = ({ client }) => {
switch (client) {
case 'sqlite-legacy':
return 'sqlite';
default:
return client;
}
};