Значение по умолчанию столбца Adonisjs

this.alter('mytable', (table) => {
	table.boolean('columnxxxxx').defaultTo(true)
	table.boolean('columnyyyyy').defaultTo(true)
})
GutoTrosla