mirror of https://github.com/louislam/uptime-kuma
				
				
				
			
		
			
				
	
	
		
			13 lines
		
	
	
		
			336 B
		
	
	
	
		
			JavaScript
		
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			336 B
		
	
	
	
		
			JavaScript
		
	
	
exports.up = function (knex) {
 | 
						|
    return knex.schema
 | 
						|
        .alterTable("monitor", function (table) {
 | 
						|
            table.text("conditions").notNullable().defaultTo("[]");
 | 
						|
        });
 | 
						|
};
 | 
						|
 | 
						|
exports.down = function (knex) {
 | 
						|
    return knex.schema.alterTable("monitor", function (table) {
 | 
						|
        table.dropColumn("conditions");
 | 
						|
    });
 | 
						|
};
 |