Signed-off-by: Joas Schilling <coding@schilljs.com>pull/6563/head
parent
ce3bcf7e28
commit
c58ff2990e
@ -0,0 +1,25 @@ |
||||
<?php |
||||
namespace OCA\TwoFactorBackupCodes\Migration; |
||||
|
||||
use Doctrine\DBAL\Schema\Schema; |
||||
use OCP\Migration\BigIntMigration; |
||||
use OCP\Migration\SimpleMigrationStep; |
||||
use OCP\Migration\IOutput; |
||||
|
||||
/** |
||||
* Auto-generated migration step: Please modify to your needs! |
||||
*/ |
||||
class Version1002Date20170919101419 extends BigIntMigration { |
||||
|
||||
/** |
||||
* @return array Returns an array with the following structure |
||||
* ['table1' => ['column1', 'column2'], ...] |
||||
* @since 13.0.0 |
||||
*/ |
||||
protected function getColumnsByTable() { |
||||
return [ |
||||
'twofactor_backupcodes' => ['id'], |
||||
]; |
||||
} |
||||
|
||||
} |
Loading…
Reference in new issue