aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/en/user/upgrade.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/en/user/upgrade.rst')
-rw-r--r--docs/en/user/upgrade.rst14
1 files changed, 4 insertions, 10 deletions
diff --git a/docs/en/user/upgrade.rst b/docs/en/user/upgrade.rst
index 5d864139..4def03cb 100644
--- a/docs/en/user/upgrade.rst
+++ b/docs/en/user/upgrade.rst
@@ -20,13 +20,14 @@ Upgrade on a dedicated web server
20Explanations about database migrations 20Explanations about database migrations
21"""""""""""""""""""""""""""""""""""""" 21""""""""""""""""""""""""""""""""""""""
22 22
23During the update, we execute database migrations.
24
23All the database migrations are stored in ``app/DoctrineMigrations``. You can execute each migration individually: 25All the database migrations are stored in ``app/DoctrineMigrations``. You can execute each migration individually:
24``bin/console doctrine:migrations:migrate 20161001072726 --env=prod``. 26``bin/console doctrine:migrations:migrate 20161001072726 --env=prod``.
25 27
28Here is the migrations list for 2.1.x to 2.2.0 release:
26 29
27Here are the migrations for 2.1.x to 2.2.0 release: 30* ``20161001072726``: added foreign keys for account resetting
28
29* ``20161001072726``: added foreign keys for for account resetting
30* ``20161022134138``: converted database to ``utf8mb4`` encoding (for MySQL only) 31* ``20161022134138``: converted database to ``utf8mb4`` encoding (for MySQL only)
31* ``20161024212538``: added ``user_id`` column on ``oauth2_clients`` to prevent users to delete API clients from other users 32* ``20161024212538``: added ``user_id`` column on ``oauth2_clients`` to prevent users to delete API clients from other users
32* ``20161031132655``: added the internal setting to enable/disable downloading pictures 33* ``20161031132655``: added the internal setting to enable/disable downloading pictures
@@ -62,13 +63,6 @@ You must run some SQL queries to upgrade your database. We assume that the table
62 63
63.. code-block:: sql 64.. code-block:: sql
64 65
65 ALTER TABLE `wallabag_entry` ADD `uuid` LONGTEXT DEFAULT NULL;
66 INSERT INTO `wallabag_craue_config_setting` (`name`, `value`, `section`) VALUES ('share_public', '1', 'entry');
67 ALTER TABLE `wallabag_oauth2_clients` ADD name longtext COLLATE 'utf8_unicode_ci' DEFAULT NULL;
68 INSERT INTO `wallabag_craue_config_setting` (`name`, `value`, `section`) VALUES ('import_with_redis', '0', 'import');
69 INSERT INTO `wallabag_craue_config_setting` (`name`, `value`, `section`) VALUES ('import_with_rabbitmq', '0', 'import');
70 ALTER TABLE `wallabag_config` ADD `pocket_consumer_key` VARCHAR(255) DEFAULT NULL;
71 DELETE FROM `wallabag_craue_config_setting` WHERE `name` = 'pocket_consumer_key';
72 66
73Upgrade from 2.0.x to 2.1.1 67Upgrade from 2.0.x to 2.1.1
74--------------------------- 68---------------------------