Merge pull request #859 from jonnybarnes/858-error-updating-database-on-prod

Fix article schema change
This commit is contained in:
Jonny Barnes 2023-05-27 16:55:15 +01:00 committed by GitHub
commit 6dc3803f51
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,7 +13,7 @@ return new class extends Migration
{
Schema::table('articles', function (Blueprint $table) {
$table->string('titleurl', 255)->change();
$table->string('url', 255)->change();
$table->string('url', 255)->nullable()->change();
});
}