streams/Zotlabs/Update/_1115.php

18 lines
348 B
PHP
Raw Normal View History

<?php
namespace Zotlabs\Update;
2021-12-02 23:02:31 +00:00
class _1115
{
public function run()
{
2021-12-02 23:02:31 +00:00
// Introducing email verification. Mark all existing accounts as verified or they
// won't be able to login.
2021-12-02 23:02:31 +00:00
$r = q("update account set account_flags = (account_flags ^ 1) where (account_flags & 1) ");
return UPDATE_SUCCESS;
}
}