Jimmy Monin 57708e3169 Initial commit
Functional, without SSO
2016-09-18 11:03:26 +02:00

14 lines
314 B
PHP

<?php
require_once __DIR__."/update.php";
class Update_262 extends Update
{
public function update()
{
if ("db" == $this->_storage) {
$this->_dbConnection->query("ALTER TABLE `LBC_Alert` ADD `last_id` INTEGER UNSIGNED NOT NULL DEFAULT '0' AFTER `send_pushbullet`");
}
}
}