From 8216e8781f9715b0d11a729d81fdac36218fd1e5 Mon Sep 17 00:00:00 2001 From: Arthur Neuman Date: Sun, 6 Sep 2020 21:50:02 -0400 Subject: [PATCH] Set guilds.room to max 20 as well --- db/migrations/20200901201805_1.1.0.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/migrations/20200901201805_1.1.0.js b/db/migrations/20200901201805_1.1.0.js index 625ef02..f1190d5 100644 --- a/db/migrations/20200901201805_1.1.0.js +++ b/db/migrations/20200901201805_1.1.0.js @@ -9,7 +9,7 @@ exports.up = function (knex) { table.string('id', 255).primary() table.string('channel', 255).notNullable() - table.string('room', 10).notNullable() + table.string('room', 20).notNullable() table.foreign('room') .references('name') .inTable('rooms')