Browse Source

disable knex migration looking for previous migrations

Pouria Ezzati 1 năm trước cách đây
mục cha
commit
9d9f57abae
1 tập tin đã thay đổi với 2 bổ sung1 xóa
  1. 2 1
      knexfile.js

+ 2 - 1
knexfile.js

@@ -13,7 +13,8 @@ module.exports = {
     },
     migrations: {
       tableName: "knex_migrations",
-      directory: "server/migrations"
+      directory: "server/migrations",
+      disableMigrationsListValidation: true,
     }
   }
 };