diff options
author | Jeremy Benoist <jeremy.benoist@gmail.com> | 2017-06-11 23:05:19 +0200 |
---|---|---|
committer | Jeremy Benoist <jeremy.benoist@gmail.com> | 2017-06-20 16:03:35 +0200 |
commit | 906424c1b6fd884bf2081bfe6dd0b1f9651c2801 (patch) | |
tree | 8ca6896e1279e4d403a7b63c775bde7aa2bcf7ce /app/DoctrineMigrations/Version20170501115751.php | |
parent | 9de9f1e5ceed4ac7ecd27e1cb808e630a831f94b (diff) | |
download | wallabag-906424c1b6fd884bf2081bfe6dd0b1f9651c2801.tar.gz wallabag-906424c1b6fd884bf2081bfe6dd0b1f9651c2801.tar.zst wallabag-906424c1b6fd884bf2081bfe6dd0b1f9651c2801.zip |
Crypt site credential password
Diffstat (limited to 'app/DoctrineMigrations/Version20170501115751.php')
-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 846a87b5..2597f1ff 100644 --- a/app/DoctrineMigrations/Version20170501115751.php +++ b/app/DoctrineMigrations/Version20170501115751.php | |||
@@ -39,7 +39,7 @@ class Version20170501115751 extends AbstractMigration implements ContainerAwareI | |||
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', 'string', ['length' => 255]); |
42 | $table->addColumn('password', 'string', ['length' => 255]); | 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'); |
45 | $table->setPrimaryKey(['id']); | 45 | $table->setPrimaryKey(['id']); |