Skip to content

Commit

Permalink
Fixed DB calls for MySQL
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianPrieber committed Jul 19, 2023
1 parent 9d7b383 commit 9515017
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public function up()
$table->rememberToken();
$table->timestamps();
$table->string('theme')->nullable();
$table->unsignedBigInteger('auth_as')->nullable();
$table->unsignedInteger('auth_as')->nullable();
});
}

Expand Down
2 changes: 1 addition & 1 deletion resources/views/components/finishing.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@
// Adds new column to the users table
if (!Schema::hasColumn('users', 'auth_as')) {
Schema::table('users', function (Blueprint $table) {
$table->unsignedBigInteger('auth_as')->nullable();
$table->unsignedInteger('auth_as')->nullable();
});
}
Expand Down

0 comments on commit 9515017

Please sign in to comment.