mirror of
https://github.com/ZeJMaN/LBCAlerte_ynh.git
synced 2025-06-08 13:35:30 +02:00
14 lines
304 B
PHP
14 lines
304 B
PHP
<?php
|
|
|
|
require_once __DIR__."/update.php";
|
|
|
|
class Update_31 extends Update
|
|
{
|
|
public function update()
|
|
{
|
|
if ("db" == $this->_storage) {
|
|
$this->_dbConnection->query("ALTER TABLE `LBC_Alert` ADD `max_id` INTEGER UNSIGNED NOT NULL DEFAULT '0' AFTER `last_id`");
|
|
}
|
|
}
|
|
}
|