diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 61763a7648..0000000000 --- a/.travis.yml +++ /dev/null @@ -1,22 +0,0 @@ -language: php -sudo: false -php: - - 7 - -install: - - phpenv config-rm xdebug.ini - - composer selfupdate - - rm composer.lock - - composer update --no-scripts - - php artisan clear-compiled - - php artisan optimize - - php artisan env - - mv -v .env.testing .env - - php artisan env - - touch storage/upload/at-1.data - - touch storage/upload/at-2.data - - touch storage/database/testing.db - - php artisan migrate --seed - -script: - - phpunit diff --git a/app/Support/Migration/TestData.php b/app/Support/Migration/TestData.php index 5c87f63003..3d39cc3215 100644 --- a/app/Support/Migration/TestData.php +++ b/app/Support/Migration/TestData.php @@ -810,10 +810,11 @@ class TestData foreach ($this->data['users'] as $user) { $insert[] = [ - 'created_at' => $this->time, - 'updated_at' => $this->time, - 'email' => $user['email'], - 'password' => bcrypt($user['password']), + 'created_at' => $this->time, + 'updated_at' => $this->time, + 'email' => $user['email'], + 'remember_token' => '', + 'password' => bcrypt($user['password']), ]; }