Przeglądaj źródła

Wonder if password generation is failing because of long passwords

Pitu 6 lat temu
rodzic
commit
e7d27844d0

+ 1 - 1
src/api/database/migrations/20190221225812_initialMigration.js

@@ -3,7 +3,7 @@ exports.up = async knex => {
 		table.increments();
 		table.string('uuid');
 		table.string('username');
-		table.string('password');
+		table.text('password');
 		table.boolean('enabled');
 		table.boolean('isAdmin');
 		table.string('apiKey');