Skip to content

Commit

Permalink
Merge pull request #7 from jmroelofs/patch-1
Browse files Browse the repository at this point in the history
Make migrations work in Laravel 6
  • Loading branch information
jazmy committed Nov 15, 2019
2 parents 0fb898b + faad277 commit 58ed071
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion migrations/2018_09_30_110932_create_forms_table.php
Expand Up @@ -21,7 +21,7 @@ public function up()
Schema::create('forms', function (Blueprint $table) {
$table->increments('id');

$table->unsignedInteger('user_id')->nullable();
$table->unsignedBigInteger('user_id')->nullable();

$table->string('name');
$table->string('visibility');
Expand Down
Expand Up @@ -23,7 +23,7 @@ public function up()

$table->unsignedInteger('form_id');

$table->unsignedInteger('user_id')->nullable();
$table->unsignedBigInteger('user_id')->nullable();

$table->text('content');

Expand Down

0 comments on commit 58ed071

Please sign in to comment.