From 9ed037412f1ab600e5d88c751b3e583c7ff343dc Mon Sep 17 00:00:00 2001 From: Bubka <858858+Bubka@users.noreply.github.com> Date: Mon, 4 Apr 2022 15:25:35 +0200 Subject: [PATCH] Try removing concerned lines --- .travis.yml | 5 ++--- ...39_split_twofaccounts_uri_in_multiple_columns.php | 12 ++++++------ 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8b392b35..af354653 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,7 +24,6 @@ script: - cp .env.travis .env - php artisan config:clear - php artisan key:generate - - sqlite3 --version - DATABASE=sqlite vendor/bin/phpunit -c phpunit.xml --coverage-clover=coverage.xml after_success: @@ -34,5 +33,5 @@ after_success: # Monitor only these branches branches: only: - - master - # - dev \ No newline at end of file + # - master + - dev \ No newline at end of file diff --git a/database/migrations/2021_09_08_191139_split_twofaccounts_uri_in_multiple_columns.php b/database/migrations/2021_09_08_191139_split_twofaccounts_uri_in_multiple_columns.php index a29ad054..a3ce72cb 100644 --- a/database/migrations/2021_09_08_191139_split_twofaccounts_uri_in_multiple_columns.php +++ b/database/migrations/2021_09_08_191139_split_twofaccounts_uri_in_multiple_columns.php @@ -30,12 +30,12 @@ class SplitTwofaccountsUriInMultipleColumns extends Migration $table->unsignedBigInteger('counter')->nullable(); }); - Schema::table('twofaccounts', function (Blueprint $table){ - $table->string('otp_type', 10)->nullable(false)->change(); - $table->text('secret')->nullable(false)->change(); - $table->string('algorithm', 20)->nullable(false)->change(); - $table->unsignedSmallInteger('digits')->nullable(false)->change(); - }); + // Schema::table('twofaccounts', function (Blueprint $table){ + // $table->string('otp_type', 10)->nullable(false)->change(); + // $table->text('secret')->nullable(false)->change(); + // $table->string('algorithm', 20)->nullable(false)->change(); + // $table->unsignedSmallInteger('digits')->nullable(false)->change(); + // }); // Apply previous migration 'AlterEncryptedColumnsToText' even to sqlite base if ('sqlite' === $driver) {