Is the '4096' value information in some administrator manual?
but curious to know which table is responsible for the automatic increase in 'account_id' every time a channel is deleted and then re-created with the same name.
CREATE TABLE "account" (
"account_id" serial NOT NULL,
...
CREATE TABLE IF NOT EXISTS `account` (
`account_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
...
util/update_db
./util/udall
first. This tool was added quite recently.
Yeah, the install docs definitely need to be updated as well.