diff options
Diffstat (limited to 'docs/en')
-rw-r--r-- | docs/en/user/upgrade.rst | 14 |
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 | |||
20 | Explanations about database migrations | 20 | Explanations about database migrations |
21 | """""""""""""""""""""""""""""""""""""" | 21 | """""""""""""""""""""""""""""""""""""" |
22 | 22 | ||
23 | During the update, we execute database migrations. | ||
24 | |||
23 | All the database migrations are stored in ``app/DoctrineMigrations``. You can execute each migration individually: | 25 | All 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 | ||
28 | Here is the migrations list for 2.1.x to 2.2.0 release: | ||
26 | 29 | ||
27 | Here 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 | ||
73 | Upgrade from 2.0.x to 2.1.1 | 67 | Upgrade from 2.0.x to 2.1.1 |
74 | --------------------------- | 68 | --------------------------- |