2017-09-19 13:31:49 +03:00
|
|
|
<?php
|
|
|
|
namespace OCA\TwoFactorBackupCodes\Migration;
|
|
|
|
|
|
|
|
use OCP\Migration\BigIntMigration;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Auto-generated migration step: Please modify to your needs!
|
|
|
|
*/
|
2017-09-26 17:13:04 +03:00
|
|
|
class Version1002Date20170926101419 extends BigIntMigration {
|
2017-09-19 13:31:49 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return array Returns an array with the following structure
|
|
|
|
* ['table1' => ['column1', 'column2'], ...]
|
|
|
|
* @since 13.0.0
|
|
|
|
*/
|
|
|
|
protected function getColumnsByTable() {
|
|
|
|
return [
|
|
|
|
'twofactor_backupcodes' => ['id'],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|