 b02df8e610
			
		
	
	
		b02df8e610
		
	
	
	
	
		
			
			* initial implementation of notifications * typehint UUID returns. Fixes that notifications bug
		
			
				
	
	
		
			35 lines
		
	
	
		
			736 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			736 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?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');
 | |
|     }
 | |
| }
 |