1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-06-27 16:36:00 +00:00

Remove phinx

Doctrine handle quite correctly database migration. Thanks to `doctrine:schema:update`
This commit is contained in:
Jeremy Benoist 2015-06-02 16:54:52 +02:00
parent 51d9699fa1
commit 170746f99d
4 changed files with 0 additions and 40 deletions

View file

@ -1,22 +0,0 @@
<?php
use Phinx\Migration\AbstractMigration;
class InitDatabase extends AbstractMigration
{
/**
* Migrate Up.
*/
public function up()
{
$this->execute("INSERT INTO config (name, value) VALUES ('foo', 'bar');");
}
/**
* Migrate Down.
*/
public function down()
{
$this->execute("DELETE FROM config WHERE name = 'foo' AND value = 'bar';");
}
}