Initial commit

This commit is contained in:
Daan Geurts
2019-10-16 14:20:07 +02:00
commit 7f4b49d98d
28 changed files with 1340 additions and 0 deletions
@@ -0,0 +1,25 @@
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateAppleNotificationsTable extends Migration
{
public function up()
{
Schema::create('apple_notifications', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('type');
$table->text('payload')->nullable();
$table->text('exception')->nullable();
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('apple_notifications');
}
}