Increase cahr limit to 1023

This commit is contained in:
poeti8 2019-10-05 16:38:04 +03:30
parent b813425e7d
commit b1186ca8cb
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ export async function createLinkTable(knex: Knex) {
.references("id")
.inTable("domains");
table.string("password");
table.string("target").notNullable();
table.string("target", 1023).notNullable();
table
.integer("user_id")
.references("id")