We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4569b34 commit 6afbc5eCopy full SHA for 6afbc5e
scripts/db/2024-07-11-0000-dns-results.js
@@ -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
- };
+exports.up = function (knex) {
+ return knex.schema.table('monitor', function (table) {
+ table.string('dns_last_result', 2000).alter();
+ });
+};
6
7
- exports.down = function(knex) {
8
9
- table.string('dns_last_result', 255).alter();
10
11
+exports.down = function (knex) {
+ table.string('dns_last_result', 255).alter();
0 commit comments