17 lines
502 B
Python
17 lines
502 B
Python
from libbot import sync
|
|
from mongodb_migrations.base import BaseMigration
|
|
|
|
|
|
class Migration(BaseMigration):
|
|
def upgrade(self):
|
|
sync.config_set("update_checker", True)
|
|
sync.config_set(
|
|
"url_updater",
|
|
"https://git.end-play.xyz/api/v1/repos/GarbageReminder/TelegramBot/releases/latest",
|
|
"strings",
|
|
)
|
|
|
|
def downgrade(self):
|
|
sync.config_delete("update_checker", missing_ok=True)
|
|
sync.config_delete("url_updater", "strings")
|