text('max_submissions_reached_text')->nullable()->default('This form has now reached the maximum number of allowed submissions and is now closed.')->change(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('forms', function (Blueprint $table) { $table->string('max_submissions_reached_text')->nullable()->default('This form has now reached the maximum number of allowed submissions and is now closed.')->change(); }); } };