diff options
author | Thomas Citharel <tcit@tcit.fr> | 2017-06-14 15:02:34 +0200 |
---|---|---|
committer | Jeremy Benoist <jeremy.benoist@gmail.com> | 2017-06-20 16:03:39 +0200 |
commit | bead8b42da4f17238dc0d5e0f90184b224ec5df7 (patch) | |
tree | 67af15e3f45dc496e492767095e5f4b477e56848 /app/DoctrineMigrations | |
parent | 906424c1b6fd884bf2081bfe6dd0b1f9651c2801 (diff) | |
download | wallabag-bead8b42da4f17238dc0d5e0f90184b224ec5df7.tar.gz wallabag-bead8b42da4f17238dc0d5e0f90184b224ec5df7.tar.zst wallabag-bead8b42da4f17238dc0d5e0f90184b224ec5df7.zip |
Fix reviews
Encrypt username too
Redirect to list after saving credentials
Fix typos
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
Diffstat (limited to 'app/DoctrineMigrations')
-rw-r--r-- | app/DoctrineMigrations/Version20170501115751.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/DoctrineMigrations/Version20170501115751.php b/app/DoctrineMigrations/Version20170501115751.php index 2597f1ff..7f068eb8 100644 --- a/app/DoctrineMigrations/Version20170501115751.php +++ b/app/DoctrineMigrations/Version20170501115751.php | |||
@@ -38,7 +38,7 @@ class Version20170501115751 extends AbstractMigration implements ContainerAwareI | |||
38 | $table->addColumn('id', 'integer', ['autoincrement' => true]); | 38 | $table->addColumn('id', 'integer', ['autoincrement' => true]); |
39 | $table->addColumn('user_id', 'integer'); | 39 | $table->addColumn('user_id', 'integer'); |
40 | $table->addColumn('host', 'string', ['length' => 255]); | 40 | $table->addColumn('host', 'string', ['length' => 255]); |
41 | $table->addColumn('username', 'string', ['length' => 255]); | 41 | $table->addColumn('username', 'text'); |
42 | $table->addColumn('password', 'text'); | 42 | $table->addColumn('password', 'text'); |
43 | $table->addColumn('createdAt', 'datetime'); | 43 | $table->addColumn('createdAt', 'datetime'); |
44 | $table->addIndex(['user_id'], 'idx_user'); | 44 | $table->addIndex(['user_id'], 'idx_user'); |