9 lines
250 B
PHP
9 lines
250 B
PHP
<?php
|
|
use Index\Db\DbConnection;
|
|
use Index\Db\Migration\DbMigration;
|
|
|
|
final class NukeServersTable_20250206_191603 implements DbMigration {
|
|
public function migrate(DbConnection $conn): void {
|
|
$conn->execute('DROP TABLE servers');
|
|
}
|
|
}
|