. */ namespace Application\Migrations; use Doctrine\DBAL\Migrations\AbstractMigration; use Doctrine\DBAL\Schema\Schema; class VersionAuthserverStats20171102211518 extends AbstractMigration { public function up(Schema $schema) { $authEntry = $schema->createTable('vierbergenlars_stats_auth'); $authEntry->addColumn('id', 'integer')->setAutoincrement(true); $authEntry->addColumn('ip', 'string'); $authEntry->addColumn('ts', 'datetime'); $authEntry->addColumn('success', 'boolean'); $authEntry->setPrimaryKey([ 'id' ]); } public function down(Schema $schema) { $schema->dropTable('vierbergenlars_stats_auth'); } }