]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Added information about latest migrations
authorNicolas Lœuillet <nicolas@loeuillet.org>
Fri, 13 Jan 2017 13:51:37 +0000 (14:51 +0100)
committerNicolas Lœuillet <nicolas@loeuillet.org>
Mon, 23 Jan 2017 11:42:58 +0000 (12:42 +0100)
14 files changed:
app/DoctrineMigrations/Version20160410190541.php
app/DoctrineMigrations/Version20160812120952.php
app/DoctrineMigrations/Version20160911214952.php
app/DoctrineMigrations/Version20160916201049.php
app/DoctrineMigrations/Version20161001072726.php
app/DoctrineMigrations/Version20161022134138.php
app/DoctrineMigrations/Version20161024212538.php
app/DoctrineMigrations/Version20161031132655.php
app/DoctrineMigrations/Version20161104073720.php
app/DoctrineMigrations/Version20161106113822.php
app/DoctrineMigrations/Version20161117071626.php
docs/de/user/upgrade.rst
docs/en/user/upgrade.rst
docs/fr/user/upgrade.rst

index f166a32513cd7ac90eef9ef26aee7306acb45e29..ebf4135f9f5052a0e1f519bb4028077f0d8c9520 100644 (file)
@@ -7,6 +7,9 @@ use Doctrine\DBAL\Schema\Schema;
 use Symfony\Component\DependencyInjection\ContainerAwareInterface;
 use Symfony\Component\DependencyInjection\ContainerInterface;
 
+/**
+ * Added foreign keys for account resetting
+ */
 class Version20160410190541 extends AbstractMigration implements ContainerAwareInterface
 {
     /**
index 053b8d889c736baf3030d0c89c1ffdcbdb357af6..bd6e8d6369ae03499333109557b39d340cc6697a 100644 (file)
@@ -7,6 +7,9 @@ use Doctrine\DBAL\Schema\Schema;
 use Symfony\Component\DependencyInjection\ContainerAwareInterface;
 use Symfony\Component\DependencyInjection\ContainerInterface;
 
+/**
+ * Added name field on wallabag_oauth2_clients
+ */
 class Version20160812120952 extends AbstractMigration implements ContainerAwareInterface
 {
     /**
index 6ddeb767c85acd23291ee4e1edd3809c6e7fea92..edef81ed558b895dd71270afa788e0cc1570b9c1 100644 (file)
@@ -7,6 +7,9 @@ use Doctrine\DBAL\Schema\Schema;
 use Symfony\Component\DependencyInjection\ContainerAwareInterface;
 use Symfony\Component\DependencyInjection\ContainerInterface;
 
+/**
+ * Added settings for RabbitMQ and Redis imports
+ */
 class Version20160911214952 extends AbstractMigration implements ContainerAwareInterface
 {
     /**
index 8b42bb8791a69bc3f0220508186cda0496adaf81..9f8e77e73f926bb7e60d426b745e13cf7c572d95 100644 (file)
@@ -7,6 +7,9 @@ use Doctrine\DBAL\Schema\Schema;
 use Symfony\Component\DependencyInjection\ContainerAwareInterface;
 use Symfony\Component\DependencyInjection\ContainerInterface;
 
+/**
+ * Added pocket_consumer_key field on wallabag_config
+ */
 class Version20160916201049 extends AbstractMigration implements ContainerAwareInterface
 {
     /**
index f6930778c391fd42b9ca9e494b92f96d3afb615d..b5d104cd2cf442ceb3212b5057cea8f826931b79 100644 (file)
@@ -7,6 +7,9 @@ use Doctrine\DBAL\Schema\Schema;
 use Symfony\Component\DependencyInjection\ContainerAwareInterface;
 use Symfony\Component\DependencyInjection\ContainerInterface;
 
+/**
+ * Added pocket_consumer_key field on wallabag_config
+ */
 class Version20161001072726 extends AbstractMigration implements ContainerAwareInterface
 {
     /**
index d0e5cb3fc695c9d749d3f41b988dbc9c99fbc298..c71166a00aca3fcc32ab03d292681daac4d63c96 100644 (file)
@@ -7,6 +7,9 @@ use Doctrine\DBAL\Schema\Schema;
 use Symfony\Component\DependencyInjection\ContainerAwareInterface;
 use Symfony\Component\DependencyInjection\ContainerInterface;
 
+/**
+ * Converted database to utf8mb4 encoding (for MySQL only)
+ */
 class Version20161022134138 extends AbstractMigration implements ContainerAwareInterface
 {
     /**
index 75ff86f1fa40602870e851d1ab72985fc21240f1..0c5a53da79ad7a6f4ced1b93fd66227c4562f840 100644 (file)
@@ -7,6 +7,9 @@ use Doctrine\DBAL\Schema\Schema;
 use Symfony\Component\DependencyInjection\ContainerAwareInterface;
 use Symfony\Component\DependencyInjection\ContainerInterface;
 
+/**
+ * Added user_id column on oauth2_clients to prevent users to delete API clients from other users
+ */
 class Version20161024212538 extends AbstractMigration implements ContainerAwareInterface
 {
     /**
index f81898ff3c496ab3b1eeabd9f4a9ef74ba1c2bee..83b97ca99b7d82d116cd45e078fcc6da7ff14663 100644 (file)
@@ -7,6 +7,9 @@ use Doctrine\DBAL\Schema\Schema;
 use Symfony\Component\DependencyInjection\ContainerAwareInterface;
 use Symfony\Component\DependencyInjection\ContainerInterface;
 
+/**
+ * Added the internal setting to enable/disable downloading pictures
+ */
 class Version20161031132655 extends AbstractMigration implements ContainerAwareInterface
 {
     /**
index 4721426a406aa093b0142eb2ae0888699de5ec76..fb8f5fa1e5eee653bcf6664c72236f9f598d6ede 100644 (file)
@@ -7,6 +7,9 @@ use Doctrine\DBAL\Schema\Schema;
 use Symfony\Component\DependencyInjection\ContainerAwareInterface;
 use Symfony\Component\DependencyInjection\ContainerInterface;
 
+/**
+ * Added created_at index on entry table
+ */
 class Version20161104073720 extends AbstractMigration implements ContainerAwareInterface
 {
     /**
index 55bd87a2ccba18a2a85c2b9ff87bf4bfb03c093d..faa2d9fdd7979cdc4a1c1c3fbe6affb4fa5cdf20 100644 (file)
@@ -7,6 +7,9 @@ use Doctrine\DBAL\Schema\Schema;
 use Symfony\Component\DependencyInjection\ContainerAwareInterface;
 use Symfony\Component\DependencyInjection\ContainerInterface;
 
+/**
+ * Added action_mark_as_read field on config table
+ */
 class Version20161106113822 extends AbstractMigration implements ContainerAwareInterface
 {
     /**
index d864888f1acd15ef3fb1f5e925849f1ec99f670c..8daa2142b1afa3f5303616aaeaab6531c97129cc 100644 (file)
@@ -7,6 +7,9 @@ use Doctrine\DBAL\Schema\Schema;
 use Symfony\Component\DependencyInjection\ContainerAwareInterface;
 use Symfony\Component\DependencyInjection\ContainerInterface;
 
+/**
+ * Added the internal setting to share articles to unmark.it
+ */
 class Version20161117071626 extends AbstractMigration implements ContainerAwareInterface
 {
     /**
index c22563472c6693fdc4a9daccfd8519aecff04a6f..6557e2a5d1f7546fba0bafd5e93a77e2a8fdf48b 100644 (file)
@@ -23,7 +23,7 @@ Erklärungen über die Datenbankmigration
 Während des Updates migrieren wir die Datenbank.
 
 Alle Datenbankmigrationen sind im Verzeichnis ``app/DoctrineMigrations`` gespeichert. Jede von ihnen kann einzeln ausgeführt werden:
-``bin/console doctrine:migrations:migrate 20161001072726 --env=prod``.
+``bin/console doctrine:migrations:execute 20161001072726 --env=prod``.
 
 Dies ist die Migrationsliste von 2.1.x auf 2.2.0:
 
index 4def03cbb6a79675e5fd9ccf7d5b7d47261d36e4..ff8b85ee5cebf12b29e6ad481c85ef8a2d39021e 100644 (file)
@@ -23,7 +23,9 @@ Explanations about database migrations
 During the update, we execute database migrations.
 
 All the database migrations are stored in ``app/DoctrineMigrations``. You can execute each migration individually:
-``bin/console doctrine:migrations:migrate 20161001072726 --env=prod``.
+``bin/console doctrine:migrations:execute 20161001072726 --env=prod``.
+
+You can also cancel each migration individually: ``bin/console doctrine:migrations:execute 20161001072726 --down --env=prod``.
 
 Here is the migrations list for 2.1.x to 2.2.0 release:
 
@@ -37,6 +39,9 @@ Here is the migrations list for 2.1.x to 2.2.0 release:
 * ``20161118134328``: added ``http_status`` field on ``entry`` table
 * ``20161122144743``: added the internal setting to enable/disable fetching articles with paywall
 * ``20161122203647``: dropped ``expired`` and ``credentials_expired`` fields on ``user`` table
+* ``20161128084725``: added ``list_mode`` field on ``config`` table
+* ``20161128131503``: dropped ``locked``, ``credentials_expire_at`` and ``expires_at`` fields on ``user`` table
+* ``20161214094403``: added ``uid`` index on ``entry`` table
 
 Upgrade on a shared hosting
 ^^^^^^^^^^^^^^^^^^^^^^^^^^^
index 1a8248543746368fcc4c3a85d7e2ad68b2e86d91..16c103eecfabfb95713a6ad2f9533e4adc15d383 100644 (file)
@@ -23,7 +23,7 @@ Explications à propos des migrations de base de données
 Durant la mise à jour, nous exécutons des migrations de base de données.
 
 Toutes les migrations de base de données sont stockées dans le dossier ``app/DoctrineMigrations``. Vous pouvez exécuter chaque migration individuellement :
-``bin/console doctrine:migrations:migrate 20161001072726 --env=prod``.
+``bin/console doctrine:migrations:execute 20161001072726 --env=prod``.
 
 Voici la liste des migrations de la 2.1.x à la 2.2.0 :