Files
molenda.net/db/migrations/20260209213746_create_users_table.php
T
2026-05-13 22:43:29 +02:00

23 lines
475 B
PHP

<?php
declare(strict_types=1);
use Phinx\Migration\AbstractMigration;
// phpcs:ignore PSR1.Classes.ClassDeclaration.MissingNamespace
final class CreateUsersTable extends AbstractMigration
{
public function up()
{
$table = $this->table('users');
$table->addColumn('username', 'string')
->addColumn('password', 'string')
->save();
}
public function down()
{
$this->table('users')->drop()->save();
}
}