Merge pull request #859 from jonnybarnes/858-error-updating-database-on-prod
Fix article schema change
This commit is contained in:
commit
6dc3803f51
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ return new class extends Migration
|
||||||
{
|
{
|
||||||
Schema::table('articles', function (Blueprint $table) {
|
Schema::table('articles', function (Blueprint $table) {
|
||||||
$table->string('titleurl', 255)->change();
|
$table->string('titleurl', 255)->change();
|
||||||
$table->string('url', 255)->change();
|
$table->string('url', 255)->nullable()->change();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue