13 lines
293 B
PHP
13 lines
293 B
PHP
<?php
|
|
require_once __DIR__ . '/../config.php';
|
|
|
|
try {
|
|
$pdo = db();
|
|
$sql = "DROP TABLE IF EXISTS team_members";
|
|
$pdo->exec($sql);
|
|
echo "Migration successful: dropped team_members table.\n";
|
|
} catch (PDOException $e) {
|
|
die("Migration failed: " . $e->getMessage() . "\n");
|
|
}
|
|
|