Implement base notifications support (#77)

* initial implementation of notifications
* typehint UUID returns. Fixes that notifications bug
This commit is contained in:
Dane Everitt 2016-09-05 12:00:56 -04:00 committed by GitHub
parent b3ca8a3732
commit b02df8e610
11 changed files with 176 additions and 28 deletions

View file

@ -0,0 +1,34 @@
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateNotificationsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('notifications', function (Blueprint $table) {
$table->string('id')->primary();
$table->string('type');
$table->morphs('notifiable');
$table->text('data');
$table->timestamp('read_at')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('notifications');
}
}