mirror of
https://github.com/Bubka/2FAuth.git
synced 2025-06-18 10:56:54 +02:00
Try removing concerned lines
This commit is contained in:
parent
8c0ee4ff9c
commit
9ed037412f
@ -24,7 +24,6 @@ script:
|
|||||||
- cp .env.travis .env
|
- cp .env.travis .env
|
||||||
- php artisan config:clear
|
- php artisan config:clear
|
||||||
- php artisan key:generate
|
- php artisan key:generate
|
||||||
- sqlite3 --version
|
|
||||||
- DATABASE=sqlite vendor/bin/phpunit -c phpunit.xml --coverage-clover=coverage.xml
|
- DATABASE=sqlite vendor/bin/phpunit -c phpunit.xml --coverage-clover=coverage.xml
|
||||||
|
|
||||||
after_success:
|
after_success:
|
||||||
@ -34,5 +33,5 @@ after_success:
|
|||||||
# Monitor only these branches
|
# Monitor only these branches
|
||||||
branches:
|
branches:
|
||||||
only:
|
only:
|
||||||
- master
|
# - master
|
||||||
# - dev
|
- dev
|
@ -30,12 +30,12 @@ class SplitTwofaccountsUriInMultipleColumns extends Migration
|
|||||||
$table->unsignedBigInteger('counter')->nullable();
|
$table->unsignedBigInteger('counter')->nullable();
|
||||||
});
|
});
|
||||||
|
|
||||||
Schema::table('twofaccounts', function (Blueprint $table){
|
// Schema::table('twofaccounts', function (Blueprint $table){
|
||||||
$table->string('otp_type', 10)->nullable(false)->change();
|
// $table->string('otp_type', 10)->nullable(false)->change();
|
||||||
$table->text('secret')->nullable(false)->change();
|
// $table->text('secret')->nullable(false)->change();
|
||||||
$table->string('algorithm', 20)->nullable(false)->change();
|
// $table->string('algorithm', 20)->nullable(false)->change();
|
||||||
$table->unsignedSmallInteger('digits')->nullable(false)->change();
|
// $table->unsignedSmallInteger('digits')->nullable(false)->change();
|
||||||
});
|
// });
|
||||||
|
|
||||||
// Apply previous migration 'AlterEncryptedColumnsToText' even to sqlite base
|
// Apply previous migration 'AlterEncryptedColumnsToText' even to sqlite base
|
||||||
if ('sqlite' === $driver) {
|
if ('sqlite' === $driver) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user