芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/public_html/fmd/db/migrations/20190510140126_two_factor_auth_migration.php
. */ use Phinx\Migration\AbstractMigration; class TwoFactorAuthMigration extends AbstractMigration { /** @inheritdoc */ public function change() { $userTable = $this->table('user'); if (!$userTable->hasColumn('twoFactorTypeId')) { $userTable ->addColumn('twoFactorTypeId', 'integer', ['default' => 0, 'null' => false]) ->addColumn('twoFactorSecret', 'text', ['default' => NULL, 'null' => true]) ->addColumn('twoFactorRecoveryCodes', 'text', ['default' => NULL, 'null' => true]) ->save(); } if (!$this->fetchRow('SELECT * FROM `setting` WHERE setting = \'TWOFACTOR_ISSUER\'')) { $this->table('setting')->insert([ [ 'setting' => 'TWOFACTOR_ISSUER', 'value' => '', 'userSee' => 1, 'userChange' => 1 ] ])->save(); } } }