Skip to content

Commit 4a9f73f

Browse files
committed
Merge branch 'release/2.0.2'
2 parents a2baab1 + 1eec04e commit 4a9f73f

File tree

3 files changed

+45
-1
lines changed

3 files changed

+45
-1
lines changed

changelog.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Change log
22

3+
## [2.0.2] - 2020-12-04
4+
5+
### Fixed
6+
- [issue #20](https://github.com/Bubka/2FAuth/issues/20) Issues using 'Protect sensible data'
7+
38
## [2.0.1] - 2020-12-03
49

510
### Fixed

config/app.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
|
2323
*/
2424

25-
'version' => '2.0.1',
25+
'version' => '2.0.2',
2626

2727
/*
2828
|--------------------------------------------------------------------------
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<?php
2+
3+
use Illuminate\Database\Migrations\Migration;
4+
use Illuminate\Database\Schema\Blueprint;
5+
use Illuminate\Support\Facades\Schema;
6+
7+
class AlterEncryptedColumnsToText extends Migration
8+
{
9+
/**
10+
* Run the migrations.
11+
*
12+
* @return void
13+
*/
14+
public function up()
15+
{
16+
if ('sqlite' !== config('database.default')) {
17+
18+
Schema::table('twofaccounts', function (Blueprint $table) {
19+
$table->text('account')->change();
20+
});
21+
22+
Schema::table('twofaccounts', function (Blueprint $table) {
23+
$table->text('uri')->change();
24+
});
25+
}
26+
}
27+
28+
/**
29+
* Reverse the migrations.
30+
*
31+
* @return void
32+
*/
33+
public function down()
34+
{
35+
Schema::table('twofaccounts', function (Blueprint $table) {
36+
//
37+
});
38+
}
39+
}

0 commit comments

Comments
 (0)