15 lines
405 B
PHP
15 lines
405 B
PHP
<?php
|
|
require_once __DIR__ . '/../config/database.php';
|
|
|
|
$pdo = getAnalyticsPdo();
|
|
|
|
$columns = $pdo->query("SHOW COLUMNS FROM guest_action_queue LIKE 'message_format'")->fetch();
|
|
if ($columns) {
|
|
echo "Kolumna message_format już istnieje.\n";
|
|
exit(0);
|
|
}
|
|
|
|
$sql = file_get_contents(__DIR__ . '/guest_action_queue_add_message_format.sql');
|
|
$pdo->exec($sql);
|
|
echo "Dodano kolumnę message_format.\n";
|