Skip to content

Commit

Permalink
Merge pull request #200 from quetzyg/master
Browse files Browse the repository at this point in the history
feat(*): change the user_id column type to unsignedInteger
  • Loading branch information
anteriovieira authored Mar 11, 2017
2 parents a20f70c + e14f91e commit dca1572
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Console/stubs/audits.stub
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class CreateAuditsTable extends Migration
{
Schema::create('audits', function (Blueprint $table) {
$table->increments('id');
$table->string('user_id')->nullable();
$table->unsignedInteger('user_id')->nullable();
$table->string('event');
$table->morphs('auditable');
$table->text('old_values')->nullable();
Expand Down

0 comments on commit dca1572

Please sign in to comment.