Skip to content

Commit

Permalink
remove lint changes to legacy migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
alxndrsn committed Jan 16, 2025
1 parent de1e5d7 commit 887c492
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 21 deletions.
6 changes: 0 additions & 6 deletions lib/model/migrations/.eslintrc.json

This file was deleted.

2 changes: 1 addition & 1 deletion lib/model/migrations/20180727-02-add-md5-to-blobs.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// except according to the terms contained in the LICENSE file.
//

const { md5sum } = require('../../../util/crypto'); // eslint-disable-line no-restricted-modules
const { md5sum } = require('../../util/crypto');

const up = (knex) =>
knex.schema.table('blobs', (blobs) => { blobs.string('md5', 32); })
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const up = (knex) =>

fa.index([ 'formId' ]);
}).then(() => {
const { expectedFormAttachments } = require('../../../data/schema'); // eslint-disable-line no-restricted-modules
const { expectedFormAttachments } = require('../../data/schema');
const { uniq, pluck } = require('ramda');

// now add all expected attachments on extant forms.
Expand Down
2 changes: 1 addition & 1 deletion lib/model/migrations/20190520-01-add-form-versioning.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
// including this file, may be copied, modified, propagated, or distributed
// except according to the terms contained in the LICENSE file.

const { shasum, sha256sum } = require('../../../util/crypto'); // eslint-disable-line no-restricted-modules
const { shasum, sha256sum } = require('../../util/crypto');
const assert = require('assert').strict;

const check = (message, query) =>
Expand Down
6 changes: 3 additions & 3 deletions lib/model/migrations/20191007-01-backfill-client-audits.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
// including this file, may be copied, modified, propagated, or distributed
// except according to the terms contained in the LICENSE file.

const { parseClientAudits } = require('../../../data/client-audits'); // eslint-disable-line no-restricted-modules
const { getFormFields } = require('../../../data/schema'); // eslint-disable-line no-restricted-modules
const { traverseXml, findOne, root, node, text } = require('../../../util/xml'); // eslint-disable-line no-restricted-modules
const { parseClientAudits } = require('../../data/client-audits');
const { getFormFields } = require('../../data/schema');
const { traverseXml, findOne, root, node, text } = require('../../util/xml');

const up = (db) => new Promise((resolve, reject) => {
const work = [];
Expand Down
4 changes: 2 additions & 2 deletions lib/model/migrations/20191231-02-add-schema-storage.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
// including this file, may be copied, modified, propagated, or distributed
// except according to the terms contained in the LICENSE file.

const { getFormFields } = require('../../../data/schema'); // eslint-disable-line no-restricted-modules
const { getFormFields } = require('../../data/schema');

const up = async (db) => {
await db.schema.createTable('form_fields', (fields) => {
Expand Down Expand Up @@ -51,7 +51,7 @@ const up = async (db) => {
// this config hardcoding would be dangerous with tests except that
// tests will never invoke this path.
const config = require('config').get('default.database');
const db2 = require('../../migrate').connect(config); // eslint-disable-line no-restricted-modules
const db2 = require('../migrate').connect(config);
return db2.select('projectId', 'xmlFormId').from('forms').where({ currentDefId: formDefId })
.then(([{ projectId, xmlFormId }]) => {
process.stderr.write(`\n!!!!\nThe database upgrade to v0.8 has failed because the Form '${xmlFormId}' in Project ${projectId} has an invalid schema. It tries to bind multiple instance nodes at the path ${path}.\n!!!!\n\n`);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
// including this file, may be copied, modified, propagated, or distributed
// except according to the terms contained in the LICENSE file.

const { Submission } = require('../../frames'); // eslint-disable-line no-restricted-modules
const { Submission } = require('../frames');

const up = async (db) => {
const work = [];
Expand Down
2 changes: 1 addition & 1 deletion lib/model/migrations/20210120-01-instance-names.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
// including this file, may be copied, modified, propagated, or distributed
// except according to the terms contained in the LICENSE file.

const { Submission } = require('../../frames'); // eslint-disable-line no-restricted-modules
const { Submission } = require('../frames');

const up = async (db) => {
await db.schema.table('submission_defs', (sds) => {
Expand Down
8 changes: 4 additions & 4 deletions lib/model/migrations/20211008-01-track-select-many-options.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
// except according to the terms contained in the LICENSE file.

const { map } = require('ramda');
const { getFormFields } = require('../../../data/schema'); // eslint-disable-line no-restricted-modules
const { getSelectMultipleResponses } = require('../../../data/submission'); // eslint-disable-line no-restricted-modules
const { Form } = require('../../frames'); // eslint-disable-line no-restricted-modules
const { construct } = require('../../../util/util'); // eslint-disable-line no-restricted-modules
const { getFormFields } = require('../../data/schema');
const { getSelectMultipleResponses } = require('../../data/submission');
const { Form } = require('../frames');
const { construct } = require('../../util/util');

const up = async (db) => {
// add select many flag, options field to fields
Expand Down
2 changes: 1 addition & 1 deletion lib/model/migrations/20230109-01-add-form-schema.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
// including this file, may be copied, modified, propagated, or distributed
// except according to the terms contained in the LICENSE file.

const { getFormFields, compare } = require('../../../data/schema'); // eslint-disable-line no-restricted-modules
const { getFormFields, compare } = require('../../data/schema');

/* Steps of this migration
1. remove check field collision trigger
Expand Down

0 comments on commit 887c492

Please sign in to comment.