16 lines
404 B
PHP
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();
|
|
}
|
|
}
|