Skip to content

Commit

Permalink
chore: linting
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavovalverde committed Jul 11, 2024
1 parent 4569b34 commit 6afbc5e
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions scripts/db/2024-07-11-0000-dns-results.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
exports.up = function(knex) {
return knex.schema.table('monitor', function(table) {
table.string('dns_last_result', 2000).alter();
});
};
exports.up = function (knex) {
return knex.schema.table('monitor', function (table) {
table.string('dns_last_result', 2000).alter();
});
};

exports.down = function(knex) {
return knex.schema.table('monitor', function(table) {
table.string('dns_last_result', 255).alter();
});
};
exports.down = function (knex) {
return knex.schema.table('monitor', function (table) {
table.string('dns_last_result', 255).alter();
});
};

0 comments on commit 6afbc5e

Please sign in to comment.