Lambda-School-Labs/Labs26-StorySquad-BE-TeamB

View on GitHub
data/seeds/009_Squads.js

Summary

Maintainability
A
0 mins
Test Coverage
const squads = [
  { CohortID: 1, Winner: null },
  { CohortID: 1, Winner: null },
];

exports.seed = function (knex) {
  // Inserts seed entries
  return knex('Squads').insert(squads);
};