Files
trf_certest/db/migrations/20260704161238_create_phinx_test_table.php
2026-07-04 18:13:21 +02:00

16 lines
404 B
PHP

<?php
use Phinx\Migration\AbstractMigration;
final class CreatePhinxTestTable extends AbstractMigration
{
public function change(): void
{
$table = $this->table('phinx_test');
$table
->addColumn('name', 'string', ['limit' => 100, 'null' => false])
->addColumn('created_at', 'datetime', ['default' => 'CURRENT_TIMESTAMP'])
->create();
}
}