更新项目部分结构,新增加DB

This commit is contained in:
2024-12-19 19:20:27 +08:00
parent 0fe2624e6b
commit 992c94250d
539 changed files with 1667 additions and 1906 deletions

View File

@@ -2,8 +2,8 @@
namespace app\tests\functional;
use common\fixtures\UserFixture;
use app\tests\FunctionalTester;
use common\fixtures\UserFixture;
class ResendVerificationEmailCest
{
@@ -73,10 +73,10 @@ class ResendVerificationEmailCest
{
$I->submitForm($this->formId, $this->formParams('test@mail.com'));
$I->canSeeEmailIsSent();
$I->seeRecord('common\models\User', [
$I->seeRecord('common\models\oldDb\User', [
'email' => 'test@mail.com',
'username' => 'test.test',
'status' => \common\models\User::STATUS_INACTIVE
'status' => \common\models\oldDb\User::STATUS_INACTIVE
]);
$I->see('Check your email for further instructions.');
}