Use text column type

Signed-off-by: Erik Larsson <erik.larsson@schibsted.com>
This commit is contained in:
Erik Larsson
2021-04-11 10:01:52 +02:00
parent a41a912f2d
commit 46995e92bf
@@ -22,7 +22,7 @@
exports.up = async function up(knex) {
await knex.schema.alterTable('tasks', table => {
table
.string('secrets')
.text('secrets')
.nullable()
.comment('JSON encoded secrets to authenticate tasks with');
});