11 lines
261 B
Python
11 lines
261 B
Python
|
|
from models.tg_models import TelegramAccount
|
||
|
|
|
||
|
|
if __name__ == '__main__':
|
||
|
|
tg_phones = TelegramAccount.select().where(
|
||
|
|
TelegramAccount.server_id == "192.168.50.100"
|
||
|
|
)
|
||
|
|
|
||
|
|
for i in tg_phones:
|
||
|
|
i.server_id = "192.168.50.51"
|
||
|
|
i.save()
|