From 7ada754821f4a1cdda73681e48f0be2779b500de Mon Sep 17 00:00:00 2001 From: Dominik Pfennig <dominik@suma-ev.de> Date: Thu, 22 Feb 2018 12:22:57 +0100 Subject: [PATCH] Die failed-jobs Tabelle wird nun bei jedem Update in eine frische Datenbank migriert. --- .gitlab-ci.yml | 9 +++-- ..._02_22_122047_create_failed_jobs_table.php | 35 +++++++++++++++++++ 2 files changed, 41 insertions(+), 3 deletions(-) create mode 100644 database/migrations/2018_02_22_122047_create_failed_jobs_table.php diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0bb49ffb0..f4129f3e2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -29,11 +29,12 @@ update(144.76.113.134): - chmod -R 777 bootstrap/cache - npm install - ./gulpbuild.sh + - touch database/metager.sqlite + - php artisan migrate --force - if [ -f ~/MetaGer/artisan ]; then php ~/MetaGer/artisan down;fi - cd ~/ - while [ -d ~/MetaGer ]; do rm -rf ~/MetaGer;done - mv MetaGer_neu MetaGer - - php ~/MetaGer/artisan migrate --force - sudo pkill --signal SIGHUP supervisord - php ~/MetaGer/artisan up @@ -68,11 +69,12 @@ update(metager2): - chmod -R 777 bootstrap/cache - npm install - ./gulpbuild.sh + - touch database/metager.sqlite + - php artisan migrate --force - if [ -f ~/MetaGer/artisan ]; then php ~/MetaGer/artisan down;fi - cd ~/ - while [ -d ~/MetaGer ]; do rm -rf ~/MetaGer;done - mv MetaGer_neu MetaGer - - php ~/MetaGer/artisan migrate --force - sudo pkill --signal SIGHUP supervisord - php ~/MetaGer/artisan up @@ -107,10 +109,11 @@ update(metager3.de): - chmod -R 777 bootstrap/cache - npm install - ./gulpbuild.sh + - touch database/metager.sqlite + - php artisan migrate --force - if [ -f ~/MetaGer/artisan ]; then php ~/MetaGer/artisan down;fi - cd ~/ - while [ -d ~/MetaGer ]; do rm -rf ~/MetaGer;done - mv MetaGer_neu MetaGer - - php ~/MetaGer/artisan migrate --force - sudo pkill --signal SIGHUP supervisord - php ~/MetaGer/artisan up \ No newline at end of file diff --git a/database/migrations/2018_02_22_122047_create_failed_jobs_table.php b/database/migrations/2018_02_22_122047_create_failed_jobs_table.php new file mode 100644 index 000000000..d432dff08 --- /dev/null +++ b/database/migrations/2018_02_22_122047_create_failed_jobs_table.php @@ -0,0 +1,35 @@ +<?php + +use Illuminate\Support\Facades\Schema; +use Illuminate\Database\Schema\Blueprint; +use Illuminate\Database\Migrations\Migration; + +class CreateFailedJobsTable extends Migration +{ + /** + * Run the migrations. + * + * @return void + */ + public function up() + { + Schema::create('failed_jobs', function (Blueprint $table) { + $table->bigIncrements('id'); + $table->text('connection'); + $table->text('queue'); + $table->longText('payload'); + $table->longText('exception'); + $table->timestamp('failed_at')->useCurrent(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('failed_jobs'); + } +} -- GitLab