Mysql
 sql >> Database >  >> RDS >> Mysql

Come posso scrivere migrazioni per inserire record usando phinx?

Come ha sottolineato igrossiter, esiste un metodo per questo, il nome del metodo è insert

use Phinx\Migration\AbstractMigration;

class NewStatus extends AbstractMigration
{
    protected $statusId = 1234; //It'd be nice to use an entity constant instead of magic numbers, but that's up to you.
    protected $statusName = 'In Progress';

    /**
    * Migrate Up.
    */
    public function up()
    {
        $columns = ['id', 'name'];
        $data = [[$this->statusId, $this->statusName]];
        $table = $this->table('status');
        $table->insert($columns, $data);
        $table->saveData();   
    }

    /**
    * Migrate Down.
    */
    public function down()
    {
        $this->execute('Delete from status where id = ' . $this->statusId);
    }
}

Modifica a partire dal 2 dicembre 2015

La firma di questo metodo cambierà nelle future versioni stabili in qualcosa di simile a

$data = [
    ['id' => 1, 'name' => 'foo'],
    ['id' => 2, 'name' => 'bar']
];
$table = $this->table('status');
$table->insert($data);

Maggiori informazioni qui