storage/mysql: increase auth_request.state length to 4096

Signed-off-by: Nandor Kracser <bonifaido@gmail.com>
This commit is contained in:
Nandor Kracser 2020-02-21 12:14:42 +01:00
parent 80749ffd3f
commit c7e9960c7e
No known key found for this signature in database
GPG key ID: 7A4C93C7D6B80413

View file

@ -221,4 +221,12 @@ var migrations = []migration{
`,
},
},
{
stmts: []string{`
alter table auth_request
modify column state varchar(4096);
`,
},
flavor: &flavorMySQL,
},
}