diff options
author | Nicolas Lœuillet <nicolas@loeuillet.org> | 2017-01-13 14:51:37 +0100 |
---|---|---|
committer | Nicolas Lœuillet <nicolas@loeuillet.org> | 2017-01-23 12:42:58 +0100 |
commit | b87f1712336564ec14e37487f512568bc4d986f7 (patch) | |
tree | e28c9dda44da8b59227fcea721b6140491ed108b | |
parent | 500ae20c9475a7e7718e4cf7d8c8b116a48a5e78 (diff) | |
download | wallabag-b87f1712336564ec14e37487f512568bc4d986f7.tar.gz wallabag-b87f1712336564ec14e37487f512568bc4d986f7.tar.zst wallabag-b87f1712336564ec14e37487f512568bc4d986f7.zip |
Added information about latest migrations
-rw-r--r-- | app/DoctrineMigrations/Version20160410190541.php | 3 | ||||
-rw-r--r-- | app/DoctrineMigrations/Version20160812120952.php | 3 | ||||
-rw-r--r-- | app/DoctrineMigrations/Version20160911214952.php | 3 | ||||
-rw-r--r-- | app/DoctrineMigrations/Version20160916201049.php | 3 | ||||
-rw-r--r-- | app/DoctrineMigrations/Version20161001072726.php | 3 | ||||
-rw-r--r-- | app/DoctrineMigrations/Version20161022134138.php | 3 | ||||
-rw-r--r-- | app/DoctrineMigrations/Version20161024212538.php | 3 | ||||
-rw-r--r-- | app/DoctrineMigrations/Version20161031132655.php | 3 | ||||
-rw-r--r-- | app/DoctrineMigrations/Version20161104073720.php | 3 | ||||
-rw-r--r-- | app/DoctrineMigrations/Version20161106113822.php | 3 | ||||
-rw-r--r-- | app/DoctrineMigrations/Version20161117071626.php | 3 | ||||
-rw-r--r-- | docs/de/user/upgrade.rst | 2 | ||||
-rw-r--r-- | docs/en/user/upgrade.rst | 7 | ||||
-rw-r--r-- | docs/fr/user/upgrade.rst | 2 |
14 files changed, 41 insertions, 3 deletions
diff --git a/app/DoctrineMigrations/Version20160410190541.php b/app/DoctrineMigrations/Version20160410190541.php index f166a325..ebf4135f 100644 --- a/app/DoctrineMigrations/Version20160410190541.php +++ b/app/DoctrineMigrations/Version20160410190541.php | |||
@@ -7,6 +7,9 @@ use Doctrine\DBAL\Schema\Schema; | |||
7 | use Symfony\Component\DependencyInjection\ContainerAwareInterface; | 7 | use Symfony\Component\DependencyInjection\ContainerAwareInterface; |
8 | use Symfony\Component\DependencyInjection\ContainerInterface; | 8 | use Symfony\Component\DependencyInjection\ContainerInterface; |
9 | 9 | ||
10 | /** | ||
11 | * Added foreign keys for account resetting | ||
12 | */ | ||
10 | class Version20160410190541 extends AbstractMigration implements ContainerAwareInterface | 13 | class Version20160410190541 extends AbstractMigration implements ContainerAwareInterface |
11 | { | 14 | { |
12 | /** | 15 | /** |
diff --git a/app/DoctrineMigrations/Version20160812120952.php b/app/DoctrineMigrations/Version20160812120952.php index 053b8d88..bd6e8d63 100644 --- a/app/DoctrineMigrations/Version20160812120952.php +++ b/app/DoctrineMigrations/Version20160812120952.php | |||
@@ -7,6 +7,9 @@ use Doctrine\DBAL\Schema\Schema; | |||
7 | use Symfony\Component\DependencyInjection\ContainerAwareInterface; | 7 | use Symfony\Component\DependencyInjection\ContainerAwareInterface; |
8 | use Symfony\Component\DependencyInjection\ContainerInterface; | 8 | use Symfony\Component\DependencyInjection\ContainerInterface; |
9 | 9 | ||
10 | /** | ||
11 | * Added name field on wallabag_oauth2_clients | ||
12 | */ | ||
10 | class Version20160812120952 extends AbstractMigration implements ContainerAwareInterface | 13 | class Version20160812120952 extends AbstractMigration implements ContainerAwareInterface |
11 | { | 14 | { |
12 | /** | 15 | /** |
diff --git a/app/DoctrineMigrations/Version20160911214952.php b/app/DoctrineMigrations/Version20160911214952.php index 6ddeb767..edef81ed 100644 --- a/app/DoctrineMigrations/Version20160911214952.php +++ b/app/DoctrineMigrations/Version20160911214952.php | |||
@@ -7,6 +7,9 @@ use Doctrine\DBAL\Schema\Schema; | |||
7 | use Symfony\Component\DependencyInjection\ContainerAwareInterface; | 7 | use Symfony\Component\DependencyInjection\ContainerAwareInterface; |
8 | use Symfony\Component\DependencyInjection\ContainerInterface; | 8 | use Symfony\Component\DependencyInjection\ContainerInterface; |
9 | 9 | ||
10 | /** | ||
11 | * Added settings for RabbitMQ and Redis imports | ||
12 | */ | ||
10 | class Version20160911214952 extends AbstractMigration implements ContainerAwareInterface | 13 | class Version20160911214952 extends AbstractMigration implements ContainerAwareInterface |
11 | { | 14 | { |
12 | /** | 15 | /** |
diff --git a/app/DoctrineMigrations/Version20160916201049.php b/app/DoctrineMigrations/Version20160916201049.php index 8b42bb87..9f8e77e7 100644 --- a/app/DoctrineMigrations/Version20160916201049.php +++ b/app/DoctrineMigrations/Version20160916201049.php | |||
@@ -7,6 +7,9 @@ use Doctrine\DBAL\Schema\Schema; | |||
7 | use Symfony\Component\DependencyInjection\ContainerAwareInterface; | 7 | use Symfony\Component\DependencyInjection\ContainerAwareInterface; |
8 | use Symfony\Component\DependencyInjection\ContainerInterface; | 8 | use Symfony\Component\DependencyInjection\ContainerInterface; |
9 | 9 | ||
10 | /** | ||
11 | * Added pocket_consumer_key field on wallabag_config | ||
12 | */ | ||
10 | class Version20160916201049 extends AbstractMigration implements ContainerAwareInterface | 13 | class Version20160916201049 extends AbstractMigration implements ContainerAwareInterface |
11 | { | 14 | { |
12 | /** | 15 | /** |
diff --git a/app/DoctrineMigrations/Version20161001072726.php b/app/DoctrineMigrations/Version20161001072726.php index f6930778..b5d104cd 100644 --- a/app/DoctrineMigrations/Version20161001072726.php +++ b/app/DoctrineMigrations/Version20161001072726.php | |||
@@ -7,6 +7,9 @@ use Doctrine\DBAL\Schema\Schema; | |||
7 | use Symfony\Component\DependencyInjection\ContainerAwareInterface; | 7 | use Symfony\Component\DependencyInjection\ContainerAwareInterface; |
8 | use Symfony\Component\DependencyInjection\ContainerInterface; | 8 | use Symfony\Component\DependencyInjection\ContainerInterface; |
9 | 9 | ||
10 | /** | ||
11 | * Added pocket_consumer_key field on wallabag_config | ||
12 | */ | ||
10 | class Version20161001072726 extends AbstractMigration implements ContainerAwareInterface | 13 | class Version20161001072726 extends AbstractMigration implements ContainerAwareInterface |
11 | { | 14 | { |
12 | /** | 15 | /** |
diff --git a/app/DoctrineMigrations/Version20161022134138.php b/app/DoctrineMigrations/Version20161022134138.php index d0e5cb3f..c71166a0 100644 --- a/app/DoctrineMigrations/Version20161022134138.php +++ b/app/DoctrineMigrations/Version20161022134138.php | |||
@@ -7,6 +7,9 @@ use Doctrine\DBAL\Schema\Schema; | |||
7 | use Symfony\Component\DependencyInjection\ContainerAwareInterface; | 7 | use Symfony\Component\DependencyInjection\ContainerAwareInterface; |
8 | use Symfony\Component\DependencyInjection\ContainerInterface; | 8 | use Symfony\Component\DependencyInjection\ContainerInterface; |
9 | 9 | ||
10 | /** | ||
11 | * Converted database to utf8mb4 encoding (for MySQL only) | ||
12 | */ | ||
10 | class Version20161022134138 extends AbstractMigration implements ContainerAwareInterface | 13 | class Version20161022134138 extends AbstractMigration implements ContainerAwareInterface |
11 | { | 14 | { |
12 | /** | 15 | /** |
diff --git a/app/DoctrineMigrations/Version20161024212538.php b/app/DoctrineMigrations/Version20161024212538.php index 75ff86f1..0c5a53da 100644 --- a/app/DoctrineMigrations/Version20161024212538.php +++ b/app/DoctrineMigrations/Version20161024212538.php | |||
@@ -7,6 +7,9 @@ use Doctrine\DBAL\Schema\Schema; | |||
7 | use Symfony\Component\DependencyInjection\ContainerAwareInterface; | 7 | use Symfony\Component\DependencyInjection\ContainerAwareInterface; |
8 | use Symfony\Component\DependencyInjection\ContainerInterface; | 8 | use Symfony\Component\DependencyInjection\ContainerInterface; |
9 | 9 | ||
10 | /** | ||
11 | * Added user_id column on oauth2_clients to prevent users to delete API clients from other users | ||
12 | */ | ||
10 | class Version20161024212538 extends AbstractMigration implements ContainerAwareInterface | 13 | class Version20161024212538 extends AbstractMigration implements ContainerAwareInterface |
11 | { | 14 | { |
12 | /** | 15 | /** |
diff --git a/app/DoctrineMigrations/Version20161031132655.php b/app/DoctrineMigrations/Version20161031132655.php index f81898ff..83b97ca9 100644 --- a/app/DoctrineMigrations/Version20161031132655.php +++ b/app/DoctrineMigrations/Version20161031132655.php | |||
@@ -7,6 +7,9 @@ use Doctrine\DBAL\Schema\Schema; | |||
7 | use Symfony\Component\DependencyInjection\ContainerAwareInterface; | 7 | use Symfony\Component\DependencyInjection\ContainerAwareInterface; |
8 | use Symfony\Component\DependencyInjection\ContainerInterface; | 8 | use Symfony\Component\DependencyInjection\ContainerInterface; |
9 | 9 | ||
10 | /** | ||
11 | * Added the internal setting to enable/disable downloading pictures | ||
12 | */ | ||
10 | class Version20161031132655 extends AbstractMigration implements ContainerAwareInterface | 13 | class Version20161031132655 extends AbstractMigration implements ContainerAwareInterface |
11 | { | 14 | { |
12 | /** | 15 | /** |
diff --git a/app/DoctrineMigrations/Version20161104073720.php b/app/DoctrineMigrations/Version20161104073720.php index 4721426a..fb8f5fa1 100644 --- a/app/DoctrineMigrations/Version20161104073720.php +++ b/app/DoctrineMigrations/Version20161104073720.php | |||
@@ -7,6 +7,9 @@ use Doctrine\DBAL\Schema\Schema; | |||
7 | use Symfony\Component\DependencyInjection\ContainerAwareInterface; | 7 | use Symfony\Component\DependencyInjection\ContainerAwareInterface; |
8 | use Symfony\Component\DependencyInjection\ContainerInterface; | 8 | use Symfony\Component\DependencyInjection\ContainerInterface; |
9 | 9 | ||
10 | /** | ||
11 | * Added created_at index on entry table | ||
12 | */ | ||
10 | class Version20161104073720 extends AbstractMigration implements ContainerAwareInterface | 13 | class Version20161104073720 extends AbstractMigration implements ContainerAwareInterface |
11 | { | 14 | { |
12 | /** | 15 | /** |
diff --git a/app/DoctrineMigrations/Version20161106113822.php b/app/DoctrineMigrations/Version20161106113822.php index 55bd87a2..faa2d9fd 100644 --- a/app/DoctrineMigrations/Version20161106113822.php +++ b/app/DoctrineMigrations/Version20161106113822.php | |||
@@ -7,6 +7,9 @@ use Doctrine\DBAL\Schema\Schema; | |||
7 | use Symfony\Component\DependencyInjection\ContainerAwareInterface; | 7 | use Symfony\Component\DependencyInjection\ContainerAwareInterface; |
8 | use Symfony\Component\DependencyInjection\ContainerInterface; | 8 | use Symfony\Component\DependencyInjection\ContainerInterface; |
9 | 9 | ||
10 | /** | ||
11 | * Added action_mark_as_read field on config table | ||
12 | */ | ||
10 | class Version20161106113822 extends AbstractMigration implements ContainerAwareInterface | 13 | class Version20161106113822 extends AbstractMigration implements ContainerAwareInterface |
11 | { | 14 | { |
12 | /** | 15 | /** |
diff --git a/app/DoctrineMigrations/Version20161117071626.php b/app/DoctrineMigrations/Version20161117071626.php index d864888f..8daa2142 100644 --- a/app/DoctrineMigrations/Version20161117071626.php +++ b/app/DoctrineMigrations/Version20161117071626.php | |||
@@ -7,6 +7,9 @@ use Doctrine\DBAL\Schema\Schema; | |||
7 | use Symfony\Component\DependencyInjection\ContainerAwareInterface; | 7 | use Symfony\Component\DependencyInjection\ContainerAwareInterface; |
8 | use Symfony\Component\DependencyInjection\ContainerInterface; | 8 | use Symfony\Component\DependencyInjection\ContainerInterface; |
9 | 9 | ||
10 | /** | ||
11 | * Added the internal setting to share articles to unmark.it | ||
12 | */ | ||
10 | class Version20161117071626 extends AbstractMigration implements ContainerAwareInterface | 13 | class Version20161117071626 extends AbstractMigration implements ContainerAwareInterface |
11 | { | 14 | { |
12 | /** | 15 | /** |
diff --git a/docs/de/user/upgrade.rst b/docs/de/user/upgrade.rst index c2256347..6557e2a5 100644 --- a/docs/de/user/upgrade.rst +++ b/docs/de/user/upgrade.rst | |||
@@ -23,7 +23,7 @@ Erklärungen über die Datenbankmigration | |||
23 | Während des Updates migrieren wir die Datenbank. | 23 | Während des Updates migrieren wir die Datenbank. |
24 | 24 | ||
25 | Alle Datenbankmigrationen sind im Verzeichnis ``app/DoctrineMigrations`` gespeichert. Jede von ihnen kann einzeln ausgeführt werden: | 25 | Alle Datenbankmigrationen sind im Verzeichnis ``app/DoctrineMigrations`` gespeichert. Jede von ihnen kann einzeln ausgeführt werden: |
26 | ``bin/console doctrine:migrations:migrate 20161001072726 --env=prod``. | 26 | ``bin/console doctrine:migrations:execute 20161001072726 --env=prod``. |
27 | 27 | ||
28 | Dies ist die Migrationsliste von 2.1.x auf 2.2.0: | 28 | Dies ist die Migrationsliste von 2.1.x auf 2.2.0: |
29 | 29 | ||
diff --git a/docs/en/user/upgrade.rst b/docs/en/user/upgrade.rst index 4def03cb..ff8b85ee 100644 --- a/docs/en/user/upgrade.rst +++ b/docs/en/user/upgrade.rst | |||
@@ -23,7 +23,9 @@ Explanations about database migrations | |||
23 | During the update, we execute database migrations. | 23 | During the update, we execute database migrations. |
24 | 24 | ||
25 | 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: |
26 | ``bin/console doctrine:migrations:migrate 20161001072726 --env=prod``. | 26 | ``bin/console doctrine:migrations:execute 20161001072726 --env=prod``. |
27 | |||
28 | You can also cancel each migration individually: ``bin/console doctrine:migrations:execute 20161001072726 --down --env=prod``. | ||
27 | 29 | ||
28 | Here is the migrations list for 2.1.x to 2.2.0 release: | 30 | Here is the migrations list for 2.1.x to 2.2.0 release: |
29 | 31 | ||
@@ -37,6 +39,9 @@ Here is the migrations list for 2.1.x to 2.2.0 release: | |||
37 | * ``20161118134328``: added ``http_status`` field on ``entry`` table | 39 | * ``20161118134328``: added ``http_status`` field on ``entry`` table |
38 | * ``20161122144743``: added the internal setting to enable/disable fetching articles with paywall | 40 | * ``20161122144743``: added the internal setting to enable/disable fetching articles with paywall |
39 | * ``20161122203647``: dropped ``expired`` and ``credentials_expired`` fields on ``user`` table | 41 | * ``20161122203647``: dropped ``expired`` and ``credentials_expired`` fields on ``user`` table |
42 | * ``20161128084725``: added ``list_mode`` field on ``config`` table | ||
43 | * ``20161128131503``: dropped ``locked``, ``credentials_expire_at`` and ``expires_at`` fields on ``user`` table | ||
44 | * ``20161214094403``: added ``uid`` index on ``entry`` table | ||
40 | 45 | ||
41 | Upgrade on a shared hosting | 46 | Upgrade on a shared hosting |
42 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ | 47 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
diff --git a/docs/fr/user/upgrade.rst b/docs/fr/user/upgrade.rst index 1a824854..16c103ee 100644 --- a/docs/fr/user/upgrade.rst +++ b/docs/fr/user/upgrade.rst | |||
@@ -23,7 +23,7 @@ Explications à propos des migrations de base de données | |||
23 | Durant la mise à jour, nous exécutons des migrations de base de données. | 23 | Durant la mise à jour, nous exécutons des migrations de base de données. |
24 | 24 | ||
25 | Toutes les migrations de base de données sont stockées dans le dossier ``app/DoctrineMigrations``. Vous pouvez exécuter chaque migration individuellement : | 25 | Toutes les migrations de base de données sont stockées dans le dossier ``app/DoctrineMigrations``. Vous pouvez exécuter chaque migration individuellement : |
26 | ``bin/console doctrine:migrations:migrate 20161001072726 --env=prod``. | 26 | ``bin/console doctrine:migrations:execute 20161001072726 --env=prod``. |
27 | 27 | ||
28 | Voici la liste des migrations de la 2.1.x à la 2.2.0 : | 28 | Voici la liste des migrations de la 2.1.x à la 2.2.0 : |
29 | 29 | ||