From ff9e68079b28c95fd833d06de2690a5e7938bf38 Mon Sep 17 00:00:00 2001 From: "vincent@cubedesigners.com" Date: Wed, 21 Aug 2013 16:50:13 +0000 Subject: [PATCH] --- framework/application/Bootstrap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/application/Bootstrap.php b/framework/application/Bootstrap.php index a083b16..072b123 100644 --- a/framework/application/Bootstrap.php +++ b/framework/application/Bootstrap.php @@ -32,7 +32,7 @@ class Bootstrap extends CubeIT_Bootstrap { $user->setPrimaryKey(array('id')); $user->addColumn('username', 'string', array('length' => 32)); $user->addUniqueIndex(array('username')); - $user->addColumn('password', 'string', array('length' => 32)); + $user->addColumn('password', 'string', array('length' => 256)); $user->addColumn('role', 'string', array('length' => 32)); } -- 2.39.5