mirror of
https://github.com/strapi/strapi.git
synced 2025-07-25 09:56:53 +00:00
14 lines
313 B
JavaScript
14 lines
313 B
JavaScript
![]() |
'use strict';
|
||
|
|
||
|
const checkDuplicatedTableNames = require('./check-duplicated-table-names');
|
||
|
const checkReservedNames = require('./check-reserved-names');
|
||
|
|
||
|
const validateModelSchemas = strapi => {
|
||
|
checkDuplicatedTableNames(strapi);
|
||
|
checkReservedNames(strapi);
|
||
|
};
|
||
|
|
||
|
module.exports = {
|
||
|
validateModelSchemas,
|
||
|
};
|