Lambda-School-Labs/signlingo-be

View on GitHub
data/seeds/00-cleanup.js

Summary

Maintainability
A
0 mins
Test Coverage
const cleaner = require("knex-cleaner");

exports.seed = function (knex) {
  return cleaner.clean(knex, {
    ignoreTables: ["knex_migrations", "knex_migrations_lock"],
  });
};