Skip to content

Commit

Permalink
Changed column type to UUID (#15719)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pe Ell authored and taylorotwell committed Oct 3, 2016
1 parent 08ab93f commit 660849b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class CreateNotificationsTable extends Migration
public function up()
{
Schema::create('notifications', function (Blueprint $table) {
$table->string('id')->primary();
$table->uuid('id')->primary();
$table->string('type');
$table->morphs('notifiable');
$table->text('data');
Expand Down

0 comments on commit 660849b

Please sign in to comment.