Skip to content

Commit

Permalink
Context is allowed to be null
Browse files Browse the repository at this point in the history
  • Loading branch information
thelfensdrfer committed Dec 2, 2018
1 parent 746b1aa commit b999079
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/migrations/2018_12_02_102846_update_text_columns.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ public function up()
{
Schema::table(env('LOG_TABLE', 'logs'), function (Blueprint $table) {
$table->longText('message')->change();
$table->longText('context')->change();
$table->longText('context')
->nullable()
->change();
$table->longText('extra')->change();
});
}
Expand Down

0 comments on commit b999079

Please sign in to comment.