Skip to content

Commit 6afbc5e

Browse files
chore: linting
1 parent 4569b34 commit 6afbc5e

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

Diff for: scripts/db/2024-07-11-0000-dns-results.js

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
exports.up = function(knex) {
2-
return knex.schema.table('monitor', function(table) {
3-
table.string('dns_last_result', 2000).alter();
4-
});
5-
};
1+
exports.up = function (knex) {
2+
return knex.schema.table('monitor', function (table) {
3+
table.string('dns_last_result', 2000).alter();
4+
});
5+
};
66

7-
exports.down = function(knex) {
8-
return knex.schema.table('monitor', function(table) {
9-
table.string('dns_last_result', 255).alter();
10-
});
11-
};
7+
exports.down = function (knex) {
8+
return knex.schema.table('monitor', function (table) {
9+
table.string('dns_last_result', 255).alter();
10+
});
11+
};

0 commit comments

Comments
 (0)