mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-25 18:41:05 +00:00
Added information about latest migrations
This commit is contained in:
parent
500ae20c94
commit
b87f171233
14 changed files with 41 additions and 3 deletions
|
@ -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
|
||||
{
|
||||
/**
|
||||
|
|
|
@ -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
|
||||
{
|
||||
/**
|
||||
|
|
|
@ -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
|
||||
{
|
||||
/**
|
||||
|
|
|
@ -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
|
||||
{
|
||||
/**
|
||||
|
|
|
@ -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
|
||||
{
|
||||
/**
|
||||
|
|
|
@ -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
|
||||
{
|
||||
/**
|
||||
|
|
|
@ -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
|
||||
{
|
||||
/**
|
||||
|
|
|
@ -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
|
||||
{
|
||||
/**
|
||||
|
|
|
@ -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
|
||||
{
|
||||
/**
|
||||
|
|
|
@ -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
|
||||
{
|
||||
/**
|
||||
|
|
|
@ -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
|
||||
{
|
||||
/**
|
||||
|
|
|
@ -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:
|
||||
|
||||
|
|
|
@ -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
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
|
|
@ -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 :
|
||||
|
||||
|
|
Loading…
Reference in a new issue