Merge pull request #860 from jonnybarnes/develop

MTM Fix schema update
This commit is contained in:
Jonny Barnes 2023-05-27 16:58:22 +01:00 committed by GitHub
commit 94bb8c204b
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();
});
}