|
@@ -61,6 +61,7 @@ async function checkMissingModels() {
|
|
|
table_schema = 'xiaoding_test'
|
|
|
AND table_name NOT LIKE 'admin_%'
|
|
|
AND table_name NOT LIKE 'manage_%'
|
|
|
+ AND table_name NOT LIKE 'view_%'
|
|
|
AND table_name NOT IN(
|
|
|
'cache',
|
|
|
'cache_locks',
|
|
@@ -69,7 +70,9 @@ async function checkMissingModels() {
|
|
|
'jobs',
|
|
|
'migrations',
|
|
|
'password_reset_tokens',
|
|
|
- 'personal_access_tokens'
|
|
|
+ 'personal_access_tokens',
|
|
|
+ 'sessions'
|
|
|
+
|
|
|
) `);
|
|
|
|
|
|
const existingTables = rows.map(row => row.table_name);
|