You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
379 B
PHP
15 lines
379 B
PHP
<?php
|
|
if(sql_num_query("DESCRIBE `Messages` `id`") === 0) {
|
|
sql_query("ALTER TABLE `Messages`
|
|
DROP PRIMARY KEY,
|
|
ADD `id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY FIRST
|
|
");
|
|
$applied = true;
|
|
}
|
|
|
|
_add_index("Messages", array("SUID"));
|
|
_add_index("Messages", array("RUID"));
|
|
_datetime_to_int("Messages", "Datum");
|
|
_add_index("Messages", array("Datum"));
|
|
?>
|