Skip to content
This repository has been archived by the owner on Jul 12, 2022. It is now read-only.

Commit

Permalink
v1.1.0 (#18)
Browse files Browse the repository at this point in the history
* Introducing Jobs for SeAT Group #1

* Instant group sync via job
* remove action
* dispatch a sync job

* This release consist of many improvements:
* Introducing queueable SeAT-Groups update jobs.
* Remove blocking conditions if ons user group fails.
* Roles are being removed from user groups with missing RefreshToken.
* Introducing `RefreshTokenObvserver`: upon deletion a new `GroupSync`
is dispatched.
* Introducing Logs in about-view.
* `seat-groups:users:update` now accepts a list of character_ids to
individually update.

* * missing migration
  • Loading branch information
herpaderpaldent authored Sep 4, 2018
1 parent 774858b commit 1451baa
Showing 1 changed file with 33 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<?php

use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class CreateSeatgroupLogsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('seatgroup_logs', function (Blueprint $table) {
$table->increments('id');
$table->string('event');
$table->string('message');
$table->timestamps();
});
}

/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('seatgroup_logs');
}
}

0 comments on commit 1451baa

Please sign in to comment.