File tree 3 files changed +45
-1
lines changed
3 files changed +45
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Change log
2
2
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
+
3
8
## [ 2.0.1] - 2020-12-03
4
9
5
10
### Fixed
Original file line number Diff line number Diff line change 22
22
|
23
23
*/
24
24
25
- 'version ' => '2.0.1 ' ,
25
+ 'version ' => '2.0.2 ' ,
26
26
27
27
/*
28
28
|--------------------------------------------------------------------------
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments