string('image_url')->nullable()->change(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('templates', function (Blueprint $table) { $table->string('image_url')->nullable(false)->change(); }); } };