bcgov/common-forms-toolkit

View on GitHub
app/src/db/migrations/20210506111302_019-farmopscreening-form.js

Summary

Maintainability
C
1 day
Test Coverage
const stamps = require('../stamps');

const PREFIX = require('../../forms/attestations/farmopscreening/constants').PREFIX;

exports.up = function(knex) {
  return Promise.resolve()
    .then(() => knex.schema.createTable(`${PREFIX}_submission_location`, table => {
      table.increments('locationId').primary();
      table.uuid('submissionId').references('submissionId').inTable(`${PREFIX}_submission`).notNullable().index();
      table.date('startDate').nullable();
      table.date('endDate').nullable();
      table.string('city').notNullable();
      table.decimal('cityLatitude', 10, 7).nullable();
      table.decimal('cityLongitude', 10, 7).nullable();
      table.integer('numberOfWorkers').notNullable();
      table.boolean('accTents').notNullable();
      table.string('tentDetails').nullable();
      table.boolean('accMotel').notNullable();
      table.string('motelName').nullable();
      table.string('motelAddressLine1').nullable();
      table.string('motelAddressLine2').nullable();
      table.string('motelCity').nullable();
      table.string('motelProvince', 30).nullable();
      table.string('motelPostalCode', 30).nullable();
      table.boolean('accWorkersHome').notNullable();
      stamps(knex, table);
    }))
    .then(() => knex.schema.createTable(`${PREFIX}_submission_contact`, table => {
      table.increments('contactId').primary();
      table.uuid('submissionId').references('submissionId').inTable(`${PREFIX}_submission`).notNullable().index();
      table.enu('contactType', ['PRIMARY', 'COVID_COORDINATOR']).notNullable();
      table.string('firstName').notNullable();
      table.string('lastName').notNullable();
      table.string('phone1', 30).nullable();
      table.string('phone2', 30).nullable();
      table.string('email').nullable();
      stamps(knex, table);
    }))
    .then(() => knex.schema.createTable(`${PREFIX}_submission_business`, table => {
      table.increments('businessId').primary();
      table.uuid('submissionId').references('submissionId').inTable(`${PREFIX}_submission`).notNullable().index();
      table.string('name').notNullable();
      table.string('orgBookId');
      table.string('addressLine1').notNullable();
      table.string('addressLine2');
      table.string('city').notNullable();
      table.string('province', 30).notNullable();
      table.string('postalCode', 30).notNullable();
      stamps(knex, table);
    }))
    .then(() => knex.schema.createTable(`${PREFIX}_submission_attestation`, table => {
      table.uuid('attestationId').primary();
      table.uuid('submissionId').references('submissionId').inTable(`${PREFIX}_submission`).notNullable().index();

      table.boolean('guidelinesRead').notNullable();
      table.boolean('assessmentCompleted').notNullable();
      table.boolean('developedPlan').notNullable();
      table.boolean('protectionSignage').notNullable();
      table.boolean('workerContactPersonnel').notNullable();

      table.boolean('sharedSleepingDistancing').notNullable();
      table.boolean('selfIsolateUnderstood').notNullable();
      table.boolean('selfIsolateAccommodation').notNullable();
      table.boolean('laundryServices').notNullable();
      table.boolean('wasteManagementGloves').notNullable();
      table.boolean('wasteManagementSchedule').notNullable();
      table.boolean('wasteManagementBags').notNullable();
      table.boolean('handWashingStations').notNullable();
      table.boolean('handWashingSoapWater').notNullable();
      table.boolean('handWashingWaterless').notNullable();
      table.boolean('handWashingPaperTowels').notNullable();
      table.boolean('handWashingSignage').notNullable();
      table.boolean('distancingMaintained').notNullable();
      table.boolean('distancingFaceShields').notNullable();
      table.boolean('disinfectingSchedule').notNullable();
      table.boolean('educationSignage').notNullable();
      table.boolean('educationContactPersonnel').notNullable();
      table.boolean('transportationSingleOccupant').notNullable();
      table.boolean('transportationBusesVans').notNullable();
      table.boolean('transportationTrucksCars').notNullable();
      table.boolean('transportationHelicopter').notNullable();
      table.boolean('transportationTravelPod').notNullable();
      table.boolean('transportationCleaningDistancing').notNullable();
      table.boolean('trainingCovid19').notNullable();
      table.boolean('trainingEtiquette').notNullable();
      table.boolean('trainingLocations').notNullable();
      table.boolean('trainingFirstAid').notNullable();
      table.boolean('trainingReporting').notNullable();
      table.boolean('mealsDistancing').notNullable();
      table.boolean('mealsDishware').notNullable();
      table.boolean('mealsDishwashing').notNullable();
      table.boolean('infectionSeparation').notNullable();
      table.boolean('infectionSymptoms').notNullable();
      table.boolean('infectionHeathLinkBC').notNullable();
      table.boolean('infectionSanitization').notNullable();
      table.boolean('infectionAccommodation').notNullable();
      table.boolean('infectedFeeding').notNullable();
      table.boolean('infectedHousekeeping').notNullable();
      table.boolean('infectedWaste').notNullable();
      table.boolean('certifyAccurateInformation').notNullable();
      table.boolean('agreeToInspection').notNullable();
      stamps(knex, table);
      table.boolean('sharedSleepingCommunication').notNullable().defaultTo(false);
      table.boolean('sharedSleepingProvidedAccommodations').notNullable().defaultTo(false);

    }));
};

exports.down = function(knex) {
  return Promise.resolve()
    .then(() => knex.schema.dropTableIfExists(`${PREFIX}_submission_attestation`))
    .then(() => knex.schema.dropTableIfExists(`${PREFIX}_submission_business`))
    .then(() => knex.schema.dropTableIfExists(`${PREFIX}_submission_contact`))
    .then(() => knex.schema.dropTableIfExists(`${PREFIX}_submission_location`));
};