Skip to content

Commit

Permalink
Make migrations work in Laravel 6
Browse files Browse the repository at this point in the history
  • Loading branch information
jmroelofs committed Nov 3, 2019
1 parent 0fb898b commit faad277
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 faad277

Please sign in to comment.