sql providers: change password field from varchar 255 to text

some passwords can be longer than 255 characters
This commit is contained in:
Nicola Murino
2020-04-11 11:17:40 +02:00
parent 5a5912ea66
commit 9b06e0a3b7
5 changed files with 87 additions and 16 deletions

View File

@@ -13,7 +13,7 @@ import (
)
const (
sqlDatabaseVersion = 2
sqlDatabaseVersion = 3
initialDBVersionSQL = "INSERT INTO schema_version (version) VALUES (1);"
)